HA Difference

Here you can post and download custom indicators. PLEASE: Do not start topics unless you are posting your own indicator, they will be moved to appropriate section even if you do.

Moderator: admin

HA Difference

Postby Apprentice » Thu Dec 19, 2013 3:04 pm

ha.png

As described in Dan Valcu’s article “Using The Heikin-Ashi
Technique” published in S & C magazine.

haDiff.lua
(3.89 KiB) Downloaded 989 times

haOpen.lua
(2.49 KiB) Downloaded 1003 times


MTF MCP HaOpen.png

First Indication
Up Arrow - Close Line Up
Down Arrow - Close Line Down

Decond indication
Up Arrow - Close > Open
Down Arrow - Close < Open
MTF MCP HaOpen.lua
(12.13 KiB) Downloaded 845 times
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia

Re: HA Difference

Postby Alexander.Gettinger » Mon Aug 18, 2014 2:15 pm

MQL4 version of oscillators: viewtopic.php?f=38&t=61052.
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: HA Difference

Postby JOKER83 » Sun Sep 07, 2014 5:58 pm

POSSIBLE?
haOpen

ALL time frame
ONE HAOPEN FOR W1
ONE HAOPEN FOR D1

WHEN I SEE CHART H6 I SEE ALL W1 AND D1 WITH AL TIMES CAN MAKE ON OR OFF
I HOPE YOU ASISTENT ME
JOKER83
FXCodeBase: Initiate
 
Posts: 113
Joined: Fri Jul 11, 2014 7:44 am

Re: HA Difference

Postby JOKER83 » Sun Sep 07, 2014 6:02 pm

AND E-MAIL ALERT
JOKER83
FXCodeBase: Initiate
 
Posts: 113
Joined: Fri Jul 11, 2014 7:44 am

Re: HA Difference

Postby Apprentice » Tue Sep 09, 2014 2:45 am

MTF MCP HaOpen (without Alert) Added.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia

Re: HA Difference

Postby STS Trading » Mon Apr 20, 2015 3:30 am

In the haDiff.lua-file (post of Dec 19, 2013) I fixed a bug calculating the Heikin Ashi open value. From the very beginning the open value is calculated based on the previous Heikin Ashi open value, which doesn't exists in the first period. Comparing the source code of FXCM Trading Station's built-in Heikin Ashi indicator I added an if-survey in the update-function:
Code: Select all
if period == first then
    open[period] = ( source.open[period-1] + source.close[period-1] ) / 2;
else
    open[period] = ( open[period-1] + close[period-1] ) / 2;
end


The revised version can be downloaded here:
haDiff.lua
(4.02 KiB) Downloaded 807 times


Chris
STS Trading
 
Posts: 4
Joined: Wed Jan 21, 2015 4:22 am

Re: HA Difference

Postby Apprentice » Tue May 08, 2018 5:01 am

The indicator was revised and updated.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia


Return to Custom Indicators

Who is online

Users browsing this forum: No registered users and 38 guests