DAS Hotkeys02/24/2026
DAS Trader Pro – universal exit hotkey function for all market hours
This hotkey is useful for anyone exiting positions manually or just to have it at hand when things are going south or for advanced scripting when calling an Exit is needed at a specific situation or a specific price.The features of the universal Exit hotkeyOne hotkey for seamless long and short execution.Intelligent detection and rounding...
DAS Trader Pro
DAS Hotkeys02/24/2026
DAS Trader Pro – how to read the symbol properties
Symbol propertiesSometimes we need to use a different approach for symbols that are on SSR or that are hard to borrow. For this purpose, the getquoteobj() function will retrieve all the information about the symbol.Note: The properties are being added with each version of DAS Trader Pro, so make sure you use the latest one...
DAS Hotkeys01/26/2026
DAS Trader Pro – A universal entry hotkey with static risk
Imagine being able to handle trade entries without worrying about whether you’re going long or short, trading during regular hours or extended sessions, or even the exact price of the stock. All you do is define your risk and hit the entry hotkey. For brokers like Guardian Trading, who support the LimitP stop route, that’s...
DAS Hotkeys01/05/2026
DAS Trader Pro – How to create alerts with hotkeys
Adding a price alert quicklyIf you need to add a price alert from the chart, the most efficient way is to do it with a script like this.$MYSYMB=$MONTAGE.SYMB; $MYALERT=NewAlertObj(); $MYALERT.name="Price Reached"; if($MONTAGE.PRICE<$MONTAGE.LAST) { $MYALERT.AddItem("Last Sale","<",$MONTAGE.PRICE); } else { $MYALERT.AddItem("Last Sale",">",$MONTAGE.PRICE); } $MYALERT.Speak=1; $MYALERT.SYMB=$MYSYMB; $MYALERT.PlaySound=0; $MYALERT.Autodelete=1; $MYALERT.Loop=0; $MYALERT.save();It can be a hotkey, a hot button or...