Quote from Andrew Kirillov:
In MultiCharts the focus is on using strategies to generate orders.
At the moment, you cannot initiate an order by simply clicking on the chart. However, we are going to consider adding trading right off the charts in the future MultiCharts versions.
It is called "Color Bars".Quote from GaryN:
That would be nice. Tums, what is the name of the study that colors the bars please. Ive looked through them and I cannot figure out which one it is. This is the only charting software Ive ever seen that you couldnt use up and down colors on bars and volume.
Quote from Tums:
It is called "Color Bars".
To make colors in the volume bars, the "Volume Avg" does color.
I did get the volume colorsworking. I have another problem too, my charts are starting at 10:30 instead of 9:30 and its not central time. Its just not printing the first hours bars. I have sessions set to RTH. Weird. I tried to get online chat support but they seem to be offline.Inputs:
UpColor (green),
DnColor (red),
UnCngColor (blue);
Variables:
BarColor(uncngcolor) ;
If c > c[1] then BarColor = UpColor
else
If c < c[1] then BarColor = DnColor;
Plot1(Open, "Open", BarColor);
Plot2(High, "High", BarColor);
Plot3(Low, "Low", BarColor);
Plot4(Close, "Close", BarColor);
check the regional time you have set for your computer.Quote from GaryN:
My list does not have anything called color bars. I guess thats why I cant find it.I did get the volume colorsworking. I have another problem too, my charts are starting at 10:30 instead of 9:30 and its not central time. Its just not printing the first hours bars. I have sessions set to RTH. Weird. I tried to get online chat support but they seem to be offline.