Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

silly error. dunno where it is

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

    silly error. dunno where it is

    I get a compile error. for the life of me, i cannot find anything wrong with the code.
    can anyone take a second look. i have stared at this for atleast 1 hour.
    thanks for your help


    Code:
     protected override void OnBarUpdate()
            {
    			if(Historical)
    				return;
    			
    			If (Position.MarketPosition==MarketPosition.Flat)
    			{
    				if(Close[0]>MAX(High,20)[1]){
    					IOrder i =EnterLongLimit(MAX(High,20)[1],Instrument.FullName + "Long" + DateTime.Now.Ticks);
    					
    				}
    				
    			}
    			If (Position.MarketPosition==MarketPosition.Long)
    			{
    				null;
    			}
    			
            }

    #2
    Originally posted by junkone View Post
    I get a compile error. for the life of me, i cannot find anything wrong with the code.
    can anyone take a second look. i have stared at this for atleast 1 hour.
    thanks for your help


    Code:
     protected override void OnBarUpdate()
            {
                if(Historical)
                    return;
                
                If (Position.MarketPosition==MarketPosition.Flat)
                {
                    if(Close[0]>MAX(High,20)[1]){
                        IOrder i =EnterLongLimit(MAX(High,20)[1],Instrument.FullName + "Long" + DateTime.Now.Ticks);
                        
                    }
                    
                }
                If (Position.MarketPosition==MarketPosition.Long)
                {
                    null;
                }
                
            }
    1. What is the text of the error message?
    2. C# is case sensitive: If is not the same as if.

    Comment


      #3
      Yes, I think if you lowercase the if's and comment out the non meaningful second statement (what do you want to set to null?) you should be able to compile again.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      576 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      334 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      553 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      551 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X