NexusFi: Find Your Edge


Home Menu

 





Indicator not counting zero bar.


Discussion in Platforms and Indicators

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




 
Search this Thread
  #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?
CFTC Workforce Shrinks 24% to 15-Year Low While Predicti …
Traders Hideout
Iran War Prediction Markets: Ceasefire 16%, Ground Invas …
Prediction Markets & Event Contracts
MegaETH Proves the Crowd Right: Prediction Markets Calle …
Prediction Markets & Event Contracts
South Korea Suspends Bithumb for Six Months Over AML Fai …
Cryptocurrency
Orban Crashes to 21pct on Record Turnout -- McIlroy Drop …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
24 thanks
2026 Jlab journal
10 thanks
Lady Vols Primer: Trading Volatility Journal
7 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Trying to learn Volume and price action correlation
5 thanks




Last Updated on June 4, 2015


© 2026 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 - Downloads - Top
no new posts