Information

Username: padmikads
Member since: 27 Jul 2024
Last login: 27 Jul 2024
Status: Active

Activity

Where Created Comments
Algorithms 0 1
Forum Topics 0 3
Jobs 0 0

Last Algorithm Comments

PA
padmikads · 3 months ago

There is a bug in the code. 

protected override void Initialize() { 
	_atr = Indicators.AverageTrueRange(Period, atrMaType); 
}

Should be

protected override void Initialize() { 
	_atr = Indicators.AverageTrueRange(1, atrMaType); 
}