Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Accessing Instruments within Strategy

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

    Accessing Instruments within Strategy

    wondering:

    how to set a boolean dependant upon instrument.

    For example (pseudo code):


    Code:
     
    if (AUD/CAD)
    {
    boolean=true;
    }

    So far, I tried:
    Code:
     
    if (Instrument.FullName == AUDCAD)
    {
    }
    And the strategy compiled with an error.
    Last edited by Faspomy; 02-17-2010, 10:47 PM.

    #2
    Hi, Instrument.FullName is the way to go, but it returns a string so try for example -

    Code:
    if (Instrument.FullName == "AUDCAD")
    {
    }

    Comment


      #3
      Thank you NT Bertrand !

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      47 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      22 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      15 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      21 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      23 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X