Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Value not changing

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

    Value not changing

    I have a custom value i put on my strategy before running it.

    I want that value to change to 0 if a condition was met, but it just goes back to my custom value after a bar update.

    for ex

    double value = 1000

    if Close[0] < Open[0]
    {value = 0}


    I currently have the value on the "OnBarUpdate" section fwiw
    Last edited by Ousher; 11-30-2022, 07:45 PM.

    #2
    Hello Ousher,

    If your value is in OnBarUpdate it will reset each bar, that is known as a local variable. If you want a variable that does not reset each bar you would use a class level variable:

    Code:
    private double myValue;
    
    protected override void OnBarUpdate()
    {
        if Close[0] < Open[0]
       {myValue = 0}​
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    172 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    88 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    129 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    208 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    185 views
    0 likes
    Last Post CarlTrading  
    Working...
    X