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 NullPointStrategies, Today, 05:17 AM
      0 responses
      52 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      130 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      70 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      44 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      49 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X