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…
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…
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…
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…
Everybody has experienced it. You enter a trade having automated stop loss or update the stop loss to the value you like, but then you mis-click in the orders window and lose the stop loss. Now you are pressured to…
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 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…
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…
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…
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…