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 Trader Pro
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...
DAS Hotkeys12/01/2025
DAS Trader Pro Stop loss orders
In the previous post, I showed how an automatic stop loss is placed after an entry. There are other situations when you might need to update the current stop loss, and there are different stop loss types too. Stop types These are the stop types available in DAS Trader Pro with Guardian Trading Market Limit...