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 {…
The objective of this hotkey is to add into a position, while changing the stop loss and keep the risk on the desired level. It can be very practical to build up a position or to get back into full…
In the previous post, I showed how an automatic stop loss is placed after an entry. There are other situations when you might need to update the current stop loss, and there are different stop loss types too. Stop types…
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…
DAS Trader Pro is a trading platform in constant development, while the documentation of the new features is often lagging behind, the new features exist and can make traders lives much easier. There are many reasons to chose DAS Trader…