DAS Hotkeys08/03/2026
DAS Trader Pro – monitoring a variable
This is a continuation of the previous post https://www.guardiantrading.com/das-trader-pro-how-to-target-vwap/ where I showed how to target the VWAP. Knowing that we can read any indicator/study into a variable this one will show how to monitor for an event like "The price crossing a moving average"With this technique, it is possible to monitor for any event present...
das trader pro alerts usage
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 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...