DAS Hotkeys

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