Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

REalTime plotting not showing history in A1MarketREminders

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    REalTime plotting not showing history in A1MarketREminders

    Ecosystem has A1MarketREminders that works well. But it starts by showing the historic alerts on the chart that can be a LOT of old posts not needed for go forward trading.

    May I request advice on how to only go forward with new alerts and not post the historic info? Looks like the author Ninjatrader_Paul is not active.

    A1Marketreminders - NinjaTrader Ecosystem

    #2
    Hello JMont1,

    Thank you for the post.

    From what I can see the easiest way would be to add a realtime check to the alert condition.

    The following code is at line 366:

    Code:
    if (!String.IsNullOrEmpty(SoundFile) && liveMarket && EnableSound)
    {
    PlaySound(@""+SoundFile);
    alert(eventList.Keys[i] +" " +eventList.Values[i]);
    }
    Code:
    if (!String.IsNullOrEmpty(SoundFile) && liveMarket && EnableSound[B] && State == State.Realtime[/B])
    {
    PlaySound(@""+SoundFile);
    alert(eventList.Keys[i] +" " +eventList.Values[i]);
    }

    Comment


      #3
      NinjaTrader_Jesse Worked perfect. Thank you.
      Is there a way to stop it from forcing the screen down to the zero price line at initiation? Then it has to wait for an event to trigger to move back up to the visible price area OR user has to scroll all the way up to current price. Then has to adjust the price section for full visibility. This especially sucks for moving all the way up to the over 10,000 area of NQ.

      A solution would be appreciated.

      Comment


        #4
        Hello JMont1,

        I looked at the indicator code but I don't see that it uses plots, are you seeing that a drawing object is being drawn at a 0 price? You can use the Right click -> Drawing tools -> Drawing objects menu to view any applied objects.

        Comment


          #5
          NinjaTrader_Jesse I think it is being pushed down there from these lines:

          private MyTextLocation userListPosition = MyTextLocation.None;
          private TextPosition listPosition = TextPosition.BottomLeft;

          I can the first to none as seen, but the second will not accept none. So I seem to have resolved by adding Autoscale = none.

          Thank you for the assistance. Perhaps it would be worthwhile updating that ecosystem version to add the autoscale.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          566 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          330 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          547 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          548 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X