I would like to ask you something..
I am developing one trading system and I need to see in every OnBarUpdate() the current high and low value of heikenAshi bar..
I meen.. the system should count some values and results from HeikenAshi values..
I tried this:
(I just want to write current HeikenAshi High values to OutputWindow)
Initialize(){
Add(HeikenAshi());
}
OnBarUpdate() {
Print(HeikenAshi.HAHigh[0]);
}
but it's not working..
could you give me any suggest?
Thank you very much

Comment