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()...
studies
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,...