+1 888 340 6572 GET STARTED
MultiCharts Project Management
previous_open_issue.png
Go to the previous open issue
previous_issue.png
Go to the previous issue (open or closed)
star_faded.png
Please log in to bookmark issues
feature_request_small.png
Open Feature request MC-432

Allow OHLC Bars to be styled red and green similar to candlesticks

action_vote_minus_faded.png
3
Votes
action_vote_plus_faded.png
next_issue.png
Go to the next issue (open or closed)
next_open_issue.png
Go to the next open issue
Description

It'd be great if you allowed OHLC Bars to be styled red and green similar to candlesticks. Based on if the stock finishes the bar up or down. This adds a heap of extra visual information for those of us who like OHLC.

Steps to reproduce this issue

-

Comments (3)
#0
user-offline.png  Xyzzy (Xyzzy)
Sep 01, 2011 - 20:02

Note that you can get this functionality by coding your own PaintBar-style indicator. Here's some code that I created a while ago to do just this:

Inputs:
UpColor( White ),
DnColor( Red ) ;
Variables:
PBColor( 0 ) ;

PBColor = IFF( Close > Open, UpColor, DnColor ) ;
PlotPaintBar( high, low, open, close, "", PBColor ) ;


However, I agree that it would be better to have this as a built-in option, rather than require a separate study.

#0
user-offline.png  Xyzzy (Xyzzy)
Sep 01, 2011 - 20:03

That code had some formatting problems. Here it is again:
Inputs:
UpColor( White ),
DnColor( Red ) ;
Variables:
PBColor( 0 ) ;
PBColor = IFF( Close > Open, UpColor, DnColor ) ;
PlotPaintBar( high, low, open, close, "", PBColor ) ;

#0
user-offline.png  Xyzzy (Xyzzy)
Sep 01, 2011 - 20:04

Ugh -- sorry for the double-post.

History
Issue basics
  • Type of issue
    Feature request
  • Category
    Stability
  • Targeted for
    Not determined
  • Status
    Under Review
User pain
  • Type of bug
    Not triaged
  • Likelihood
    Not triaged
  • Effect
    Not triaged
Affected by this issue (3)
People involved
  • Posted by
    No such user
  • Owned by
    Not owned by anyone
  • Assigned to
    Not assigned to anyone
  • Subscribers
    0 subscriber(s)
    Click here to show the list of subscribers
Times and dates
  • Posted at
  • Last updated
Issue details
  • Resolution
    Not determined
  • Severity
    Normal
Attachments (0)
There is nothing attached to this issue
Commits (0)
There are no code checkins for this issue
Duplicate issues (0)
This issue does not have any duplicates