In your Advanced Chart, you have your Time Template in "Dynamic" mode. This means that the amount of data loaded is relative to the amount of data displayed in the chart. Your Standard Chart is only set for two days of data. Because the data sets are different, so are the Linear Regression Channels.
To adjust the Advanced Chart to use only two days of data, you need to use Time Templates. Information on setting up Time Templates can be found here.
Regards,
Jay F.
Product Manager
_____________________________________
Have a suggestion to improve our products?
Click Support --> Request a Feature in eSignal 11
We went over this in chat on Tuesday, but it looks like more detail is needed. There are differences between the data on a Standard Chart and the data on an Advanced Chart, and one of the big differences is "Zero Volume Bars".
A Zero Volume Bar is a space that is created along the x-axis of a chart when no trades occur within that timeframe. Standard Charts display Zero Volume Bars, while Advanced Charts do not. Below is a comparison between a 1 minute chart of SONS. The green arrow is pointing to a Zero Volume Bar... notice the space? In the Advanced Chart, there is no space there, and the bars are compressed together.
Because of this difference, perfect alignment of Linear Regression Channel when comparing Standard and Advanced charts is not possible when there is the presence of even one Zero Volume Bar along the time frame of the channel. Effectively, very high volume stocks that have little or no Zero Volume Bars will align, while lower volume stocks get dramatically different relative to the number of Zero Volume Bars. Below is an example of the misalignment with SONS, and showing the region that is compressed causing the discrepancy.
We do have the suggestion of adding Zero Volume Bars to the Advanced chart on our list, and hope to have this done within the next few releases of eSignal.
Regards,
Jay F.
Product Manager
_____________________________________
Have a suggestion to improve our products?
Click Support --> Request a Feature in eSignal 11
Originally posted by averyhorton Thanks for taking the time and effort to respond.
How do you get multiple chart pictures in your reply?
I uploaded the pictures to my File Share folder I use for Community Posts, and then used the "IMG" button to insert the URL of the pictures.
Regards,
Jay F.
Product Manager
_____________________________________
Have a suggestion to improve our products?
Click Support --> Request a Feature in eSignal 11
Regards,
Jay F.
Product Manager
_____________________________________
Have a suggestion to improve our products?
Click Support --> Request a Feature in eSignal 11
A quick question...I'm trying to get this to display the normal candlestick defaulted colors on any of the bars that are not a signal. So the onAction1, onAction2 are fine as is.... but onAction3 reads:
function onAction3() {
setPriceBarColor(Color.RGB(0,0,0));
vLastAlert = 3;
Which turns any bar that is not a signal black. I can't seem to figure out how to tell this to leave the bars the default candle colors set in the chart properties.
thanks,
cas
PS....this is on the linreg3b.efs that was posted earlier in this thread
If you want to negate the effect of anAction3() as David suggested you will still need to define a default color in preMain() as there is none.
The efs paints the bars thereby overriding the default red/green hence you need to establish some color for when the conditions 1 and 2 are not true. You can either do that by inserting
setDefaultPriceBarColor(Color.yourcolor);
in preMain() or by setting the color in onAction3().
This explains why I later provided a modification to the formula so that it would not paint the bars but draw triangles on the top and bottom of the price chart.
Comment