Rank: Newbie
Groups: Registered Users, Subscribers Joined: 3/31/2016(UTC) Posts: 7
Thanks: 5 times
|
I would like to be able to chart the same MACD as is found in my Schwab account. the chart at schwab shows the MACD, signal, and divergence. the options that can be changed are FAST point, SLOW points, and SMOOTHING. any help with adding smoothing to the MACD would be of great help. I may be able to figure out the divergence (assuming it is the difference between the fast and slow moving period). I really like how it is displayed in the same window with the MACD and Signal line. thanks
|
|
|
|
Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
You can check out the following for a Divergence Based Custom Indicator:
https://www.metastock.co...r/resources/formulas/#18
The first example is based off of MACD. The built-in MACD only allows you to change the signal periods, but you can also write a custom MACD that allows you to adjust the MACD itself:
x:=Input("1st Mov",1,999,12);
y:=Input("2nd Mov",1,999,26);
z:=Input("Signal Line",1,999,9);
Mov(C,x,E)-Mov(C,y,E);
Mov(Mov(C,x,E)-Mov(C,y,E),z,E)
|
1 user thanked MS Support for this useful post.
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.