Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

heiken ashi bar data

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

    heiken ashi bar data

    hi
    I want to get heiken ashi indicator data and write it to a file.
    I don’t understand how to get this data.
    If I take the code from the indicator example.
    Then I write error CS 0103.
    The name HAOpen is missing in the current context.
    The same error is for the rest of the data of the Heiken Ashi bar. here is my code. Please help.
    Attached Files

    #2
    Hi Danila, thanks for posting.

    The indicator must be initialized properly in the script e.g.

    Code:
    public class MyStrategy : Strategy
    {
    private HeikenAshi8 HA8;
    ...
    protected override void OnStateChange()
    {
    ...
    else if (State == State.DataLoaded)
    {
        HA8 = HeikenAshi8(BarsArray[0]);
    }
    }
    
    protected override void OnBarUpdate()
    {
        Print(HA8.HAClose[0]);
    }
    }
    Kind regards,
    -ChrisL

    Comment


      #3
      Hi, Chris -> VERY BIG THANKS.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      47 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      23 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      33 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      51 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Working...
      X