Announcement

Collapse
No announcement yet.

MAPriceBars

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • MAPriceBars

    Is there a way to leave the candle wicks black when using a MA PriceBars formula? I'd like only the body of the candle painted.

    Brian

  • #2
    Brian
    Open the efs with the Editor and substitute Lines 23-27 with the following

    PHP Code:
    if(vValue >= vClose) {
            
    setPriceBarColor(Color.red,Color.black);
        } else if(
    vValue vClose) {
            
    setPriceBarColor(Color.lime,Color.black);
        } 
    or the following if you also want thin wicks

    PHP Code:
    if(vValue >= vClose) {
            
    setPriceBarColor(Color.red,Color.black,true);
        } else if(
    vValue vClose) {
            
    setPriceBarColor(Color.lime,Color.black,true);
        } 
    Hope this helps
    Alex

    Comment


    • #3
      Is there anything you can't do Alex ? Thanks for the solution. It is exactly what I was looking for.

      Brian

      Comment

      Working...
      X