DAS Hotkeys08/20/2026
DAS Trader Pro – automatic checks for study trends
Until version 5.8.2.5 of DAS Trader Pro, retrieving a historical value of a study was possible as described in the previous posthttps://www.guardiantrading.com/das-trader-pro-reading-study-values ,msgbox(getwindowobj(NAME).getstudyval("MYEMA11","bybarnum",-3));which resulted in a text stringthat required a string-to-number conversion afterward.Since every newer version above 5.8.2.5, we can use a direct retrieval as a number by adding a fourth parameter to the getstudyval()...
DAS Trader Pro
DAS Hotkeys08/03/2026
DAS Trader Pro – reading study values
Reading indicator values in scriptsIn DAS Trader Pro the indicators are called "studies," so I will be using the name "studies" from now on.Everybody knows the studies like moving averages or VWAP. Below I will describe how those studies can be read and used in DAS Trader Pro scripts.To read the value of a study,...
DAS Hotkeys08/03/2026
DAS Trader Pro – How to target VWAP
If you are trading any strategies that have technical targets in the form of any indicator (which is called study in DAS Trader Pro), you might find this useful.ObjectivesExit the trade when VWAP is reached.Use single button solution to control the functionalityChallengesAs you know, VWAP is a dynamic study constantly changed with price. So it...
DAS Hotkeys08/03/2026
DAS Trader Pro – monitoring a variable
This is a continuation of the previous post https://www.guardiantrading.com/das-trader-pro-how-to-target-vwap/ where I showed how to target the VWAP. Knowing that we can read any indicator/study into a variable this one will show how to monitor for an event like "The price crossing a moving average"With this technique, it is possible to monitor for any event present...