NexusFi: Find Your Edge


Home Menu

 





Indicator not counting zero bar.


Discussion in Platforms and Indicators

Updated
    1. trending_up 1,359 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread

Indicator not counting zero bar.

  #1 (permalink)
Reichenbach
Phoenix Arizona
 
Posts: 1 since Jun 2015
Thanks Given: 0
Thanks Received: 0

The crux of the issue is an indicator not counting the zero bar( current bar), but still counting all other bars. To resolve this, you have to manually refresh to get accurate, real time drawing line positioning on the indicator. Now, it works fine in offline charts, but that is only because they are constantly refreshing. I have images to post, but am disallowed by the board.

Here is what I suspect to be part of the issue:
 
Code
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
if(counted_bars==0) limit-=1+numbars+1;
for(i=0; i<limit; i++)

I've gotten suggestions for this as the solution:
 
Code
int lookback = numbars + 1;  // for(j<numbars+1) Close[in+j+1]
int limit=Bars - MathMax(lookback, counted_bars);
for(i=limit-1; i>=0; --i)

I've considered something like this:
 
Code
   counted_bars=IndicatorCounted();
   limit=Bars-counted_bars-1;
   if(limit>MaxHistory-1) limit=MaxHistory-1;
   for(i=limit;i>=0;i--)
It doesn't seem to work however. I'm thinking that perhaps an easier workaround would be an auto-refresh function on a .25 second interval added to the original code? Admittedly, I am an amateur in this field of writing code, but resolving this is a critical piece in keeping my overall strategy semi-automated and expanding it to the world of big money. I greatly appreciate any help.

The indicator is based on the Maximum Entropy Method, you can google it to find it since I can't link it.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
What broker to use for trading palladium futures
Commodities
MC PL editor upgrade
MultiCharts
Cheap historycal L1 data for stocks
Stocks and ETFs
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 




Last Updated on June 4, 2015


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts