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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      182 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      335 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      259 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      358 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      188 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X