Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Accessing strateg variable from inside Onexecution

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

    Accessing strateg variable from inside Onexecution

    private void Get( MarketPosition marketPosition, double results )
    {
    if (marketPosition== MarketPosition.Long)
    {
    Print(BuyCeiling + "Sending Long Results" + results.ToString());
    PNLB(BuyCeiling, results);

    }
    else
    {
    Print(SellCeiling + "Sending ShortResults" + results.ToString());
    PNLS(SellCeiling, results);

    }
    }
    protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
    {
    PrintResult();

    if ( SystemPerformance.AllTrades.Count > 0)
    if ( SystemPerformance.AllTrades.Count - 1 != LastCount)
    { string DataString;
    LastCount = SystemPerformance.AllTrades.Count - 1;
    Trade myTrades = SystemPerformance.AllTrades[SystemPerformance.AllTrades.Count - 1];
    double results= myTrades.ProfitCurrency * myTrades.Quantity;

    Print("Sending Results" + results.ToString());


    Get(marketPosition, results);

    }​





    The variable BuyCeiling is declared as
    public double BuyCeiling=0;
    same way also is SellCeiling

    However when the function is called the variables are zero. In the main strategy, the variables have always carried a value.

    Is there another way I can share with Onexecution those variables.
    I am trying to track from the results of the trades from each zone taken. so when a trade is taken the zone values are stored. When the results of the trades are known I am trying to update my data dictionary object.

    Any ideas?





    #2
    Ok I figured it out. The issue if that the marketposition is showing short, but the execution.marketposition is showing the correct direction.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 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
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X