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, 05-11-2026, 05:56 AM
    0 responses
    56 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    33 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    195 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    359 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    280 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X