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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    89 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X