Login Page - Create Account

Support Board


Date/Time: Thu, 28 Mar 2024 10:54:50 +0000



Post From: How to modify close of Heikin Ashi bar

[2015-12-27 18:55:27]
User380760 - Posts: 88
The normal close of Heikin Ashi bar is
haClose=(Open+High+Low+Close)/4

but, I want the formula of the close of Heikin Ashi bar to be

haClose = (Open+ High+ Low+ Close) / 4.0;
haClose = (haClose + Close) / 2.0;

Can I do it by not writing a C++ code?