Adding a price alert quickly If 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 {…
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…