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 kinfxhk, 07-14-2026, 09:39 AM
      0 responses
      129 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 10:18 AM
      0 responses
      105 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 09:50 AM
      0 responses
      87 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 07:21 AM
      0 responses
      106 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-11-2026, 02:11 AM
      0 responses
      86 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X