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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    72 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    39 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X