DAS Trader Pro – universal exit hotkey function for all market hours

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 alerts usage

DAS Trader Pro – How to create alerts with hotkeys

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...