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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    54 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    71 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X