Information

Username: BeardPower
Member since: 07 Feb 2016
Last login: 10 Oct 2023
Status: Active

Activity

Where Created Comments
Algorithms 0 1
Forum Topics 8 53
Jobs 0 0

Last Algorithm Comments

BE
BeardPower · 7 years ago

Yes, the indicator still works fine.

There is no need to make big changes like @itaiophir suggested.

Just replace the line 374:

var month = DateTime.ParseExact(dateTab[1], "MMM", null).Month;

with

var month = DateTime.ParseExact(dateTab[1], "MMM", CultureInfo.InvariantCulture).Month;

Addionally, change the legacy references to the updated method:

/forum/whats-new/2713