Weis Wave3c Indicator (cumulative tick wave volume) alteration please

PaulVic

Master Trader
May 26, 2016
52
3
69
Midlands, UK
Hi
Minor alteration needed to attached, i have tried altering it myself but unfortunately well beyond me.
When loaded the indicator gives a graphical total volume at bottom of screen which is fine.
In the price window it draws a zigzag and at the peaks/ troughs the corresponding "wave total volume". These "wave total volume" figures are coloured light green and light pink which I am finding very difficult to see.
Grateful if someone could amend so the figures are black or user defined so they stand out better on a white screen.
Attached;
WeisWave3c.mq4

Many thanks, Paul
 

Attachments

  • WeisWave3c.mq4
    9.4 KB · Views: 58

Enivid

Administrator
Staff member
Nov 30, 2008
18,535
1,355
144
Odesa
www.earnforex.com
That's not difficult to do. Just find where clrLightPink and clrLightGreen are used in the code. Replace them with some convenient names, like PeakValueColor and TroughValueColor. Then add input parameters with those names. Like:
MQL4:
input color PeakValueColor = clrLightPink;
 
  • 👍
Reactions: PaulVic

PaulVic

Master Trader
May 26, 2016
52
3
69
Midlands, UK
That's not difficult to do. Just find where clrLightPink and clrLightGreen are used in the code. Replace them with some convenient names, like PeakValueColor and TroughValueColor. Then add input parameters with those names. Like:
MQL4:
input color PeakValueColor = clrLightPink;

To my complete amazement changed it and it worked first time, many many thanks.
This is now much easier to read on a white screen but also user can change.
Thanks again
regards Paul
 

Attachments

  • WeisWave3d.mq4
    9.5 KB · Views: 91
  • 👍
Reactions: Enivid