Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 2,002
Thanks: 98 times Was thanked: 161 time(s) in 156 post(s)
|
nasdaqtrader wrote:Dear MS support; To get the volume bar to be on up volume color bar green down volume color bar red. Here is the 2 formula I think may be right not sure. If(V>Ref(V,-1),V,O);If(V<Ref(V,-1),V,O);If(V=REF(V,-1),V,O); or If(C>O,V,O);If(C<O,V,O);If(C=O,V,O); Any help would be appreciated Regards
The formulas should had 0's on the end, not O's. Once you plot them you would still have to change the style to Histogram, color each of the 3 plots, then save this as part of your default template. If(V>Ref(V,-1),V,0); If(V<Ref(V,-1),V,0); If(V=REF(V,-1),V,0); or If(C>O,V,0); If(C<O,V,0); If(C=O,V,0);
|