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 {…
Many traders scale-in and scale-out of their positions. Here are some scripting techniques on how to achieve multiple targets. Just split the orders This is the simplest solution. Place 2 range orders (because stop-loss orders are good to have) instead…