The stock market is a dynamic and constantly changing environment, and sometimes we might need to act differently in different situations and set some variable to a user defined value. This is where the input() function comes into play. To…
The stock market is a dynamic and constantly changing environment, and sometimes we might need to act differently in different situations and set some variable to a user defined value. This is where the input() function comes into play. To…
Symbol properties Sometimes we need to use a different approach for symbols that are on SSR or that are hard to borrow. For this purpose, the getquoteobj() function will retrieve all the information about the symbol. Note: The properties are…
Imagine being able to handle trade entries without worrying about whether you’re going long or short, trading during regular hours or extended sessions, or even the exact price of the stock. All you do is define your risk and hit…
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 {…
Now that we have our DAS Trader Pro application prepared for advanced scripting, let’s use it for some automated calculations and placing orders. Entry hotkeys For simplicity, the following hotkeys use rounding to 2 decimals, which means that they are…