DAS Hotkeys03/23/2026
DAS Trader Pro – how to save the stop loss price value for later
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 retrieve it back to stay protected.Here is the solution for such cases.setvar() and getvar() functionsas...
DAS Trader Pro
DAS Hotkeys03/09/2026
DAS Trader Pro – Where to run the scripts code
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 simply prompt the user for an input, we can call $Value=Input("Give me the value",Value,1); Which...
DAS Hotkeys03/02/2026
DAS Trader Pro – How to prompt for user input
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 simply prompt the user for an input, we can call$Value=Input("Give me the value",Value,1);Which gives us a prompt...
DAS Hotkeys02/24/2026
DAS Trader Pro – Rounding
Rounding function is a crucial part of the scripting in DAS Trader Pro because various technological rules apply for symbols below $1 price, rounding to 3(4) decimals is required for symbols above $1 price rounding to 2 decimals is required for options below $3 rounding to nearest 0.05 is required for options above $3 rounding...