marlais / Alveo

This repository is for the real-time trading application Alveo
https://apiaryfund.com/software
16 stars 17 forks source link

In file BWMFI.cs, ErrorResult in undefined #6

Open dbaechtel opened 7 years ago

dbaechtel commented 7 years ago

How is ErrorResult defined? From the following code, line 81:

`if (data[pos].Volume.Equals(0)) { if (pos == Bars - 1) _vals[pos] = ErrorResult;

                else
                    _vals[pos] = _vals[pos + 1];
            }`
dbaechtel commented 7 years ago

How does this compile with this error?