Hello everybody
In the basic MACD study there is an option to add drop lines, but you can not add extra horizontal lines above and below the zero line.
I can create a new MACD study or edit one of the other studies to add lines above and below the zero line with the following lines added into the code
addBand(0, PS_DASH, 3, Color.black);
addBand(0.0015, PS_SOLID, 1, Color.black);
addBand(0.0030, PS_SOLID, 1, Color.black);
addBand(0.0045, PS_SOLID, 1, Color.black);
addBand(-0.0015, PS_SOLID, 1, Color.black);
addBand(-0.0030, PS_SOLID, 1, Color.black);
addBand(-0.0045, PS_SOLID, 1, Color.black);
My problem is that I do not know what command to add to get the Drop Lines to display in a new or edited study.
Can somebody help me out please?
Your help will be appreciated.
Regards
In the basic MACD study there is an option to add drop lines, but you can not add extra horizontal lines above and below the zero line.
I can create a new MACD study or edit one of the other studies to add lines above and below the zero line with the following lines added into the code
addBand(0, PS_DASH, 3, Color.black);
addBand(0.0015, PS_SOLID, 1, Color.black);
addBand(0.0030, PS_SOLID, 1, Color.black);
addBand(0.0045, PS_SOLID, 1, Color.black);
addBand(-0.0015, PS_SOLID, 1, Color.black);
addBand(-0.0030, PS_SOLID, 1, Color.black);
addBand(-0.0045, PS_SOLID, 1, Color.black);
My problem is that I do not know what command to add to get the Drop Lines to display in a new or edited study.
Can somebody help me out please?
Your help will be appreciated.
Regards
Comment