I am new here, and I see this thread died a while back. Thanks to ProfLogic and all who made this one of the most interesting lessons on trading that I have ever found.
I have been using TradeStation, but have started a 30 day trial for MultiCharts, thanks to the endorsements found in this and other threads.
-------------------------------------------------------------
Quote from ProfLogic:
The only Ergodics I have is for TS8 & TS2000i. I don't have one for NT or IB. If you want one of those I will post it but they are older and haven't been updated in a while. I use MultiCharts. Just let me know.
-------------------------------------------------------------
If you have any EasyLanguage code you can share, please post it. I would like to take a look at it.
I have downloaded all the Ergodic and TSI code I could find at the TradeStation forum, and I will post it here. I have not done anything with it yet, so I can't comment on it.
-------------------------------------------------------------
Quote from ProfLogic:
For the candlesticks to be consistent the bars need to be consistent. Ensign, eSignal, QCharts & MultiCharts are the only software charting programs I am aware of that builds the bars correctly and consistently.
-------------------------------------------------------------
TradeStation plots volume bars. Why don't you mention them? You said that their volume bars are "capped". Would you explain what you mean by that?
-------------------------------------------------------------
Quote from ProfLogic:
Just to clarify, The Equi-Volume Bars are not the same as the Volume Bars. The Equi-Volume Bars are variable bars so they are inconsistent in the way they are built.
-------------------------------------------------------------
Quote from Ensign:
Equi-Volume Bars:
The bar widths can be influenced by the bar's volume, kind of like an Equi-Volume effect. However, the genius of what has been done is to keep the bar centers equally spaced so the studies and draw tools can still be applied to the chart with the equi-volume widths.
-------------------------------------------------------------
Here is a picture. It is a 60 minute chart with volume plotted as a variable width. I agree that Volume Bars are preferable.
Here is EasyLanguage code for Ergodic that I found on a website:
-------------------------------------------------------------
Create this function in easy language: blaucsi
inputs: r(numericsimple), s(numericsimple), u(numericsimple);
value1= 100* TripleAverage(close-open, r, s, u);
value2= tripleaverage(high-low,r,s,u);
if value2 <> 0 then
blaucsi = value1/value2
else
blaucsi = 0
-------------------------------------------------------------
Create this indicator: Ergodic
inputs: r(13), smooth1(5), smooth2(5);
value1 =blaucsi(r,smooth1,1);
value2 = blaucsi(r,smooth1,smooth2);
plot1(value1, "Blaucsi");
plot2(value2, "sigline");
plot3(20,"Overbought");
Plot4(-20, "Oversold");
-------------------------------------------------------------
The author of this indicator says that Blau used
r=26 and smooth=5 as the default.