GD
GDPR-24_203122
Blocked user
by Spotware
at 12 Jan 2024, 08:52
0 follower(s)
0 following
0 subscription(s)
Information
Username: | GDPR-24_203122 |
Member since: | 02 Oct 2015 |
Last login: | 02 Oct 2015 |
Status: | Blocked |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 0 | 2 |
Forum Topics | 14 | 20 |
Jobs | 0 | 0 |
About
DELETED_USER
Hello and much thanks for sharing your special indicator. I'm testing it to see if it can be useful in somewhere, and noticed there were some mistakes in your: "Example of how to invocate the measurements:"
// OnStart()
wssd = Indicators.GetIndicator(MarketSeries.Close, 14);
// OnTick()
double upperVol=wssd.SDUp.LastValue;
double lowerVol=wssd.SDDown.LastValue;
Corrected lines:
// OnStart()
wssd = Indicators.GetIndicator(14, MarketSeries.Close);
// OnTick()
double upperVol=wssd.Result.LastValue;
double lowerVol=wssd.Result1.LastValue;