NexusFi: Find Your Edge


Home Menu

 





Indicator not counting zero bar.


Discussion in Platforms and Indicators

Updated
    1. trending_up 1,775 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 Rewrites the Rulebook -- Kalshi Cracks $1B Non-Spor …
Prediction Markets & Event Contracts
Rubios Good News Within Hours and the 30-Day Math: Why H …
Prediction Markets & Event Contracts
After $87M Settles NO: Irans Nuclear Redline Sets Up the …
Prediction Markets & Event Contracts
Double Deadlock: Rubio Calls Hormuz Tolls "Unfeasib …
Traders Hideout
Peace Deal Forward Curve: May 22%, June 51%, December 81 …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
8 thanks
Darmok and Jalad at Tanagra
1 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