Registered User Joined: 7/8/2005 Posts: 3
|
Hello,
is it possible to build the 'ichimoku kinko huo' Indicator in (removed by Moderator) Software?
It consists of 4 Lines, The (removed by Moderator) formula is:
ST:=(HHV(H,26)+LLV(L,26))/2; TL:=(HHV(H,9)+LLV(L,9))/2; A1:=Ref((ST+TL)/2,-25); A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
thanks in advance, regards
Reinhard
|
Registered User Joined: 1/1/2005 Posts: 2,645
|
Reinhard,
ST:=(HHV(H,26)+LLV(L,26))/2; TL:=(HHV(H,9)+LLV(L,9))/2; A1:=Ref((ST+TL)/2,-25); A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
PCF_ST:
(MAXH26+MINL26)/2
PCF_TL:
(MAXH9+MINL9)/2
PCF_A1:
(MAXH26.25+MAXH9.25+MINL9.25+MINL26.25)/4
PCF_A2:
(MAXH52.25+MINL52.25)/2
Plot as Custom Indicators. Check "Plot using price scale"
Thanks, Jim Murphy
|