Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6693877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:02:12+00:00 2026-05-26T06:02:12+00:00

I have a WPF C# Application which is accessing data through a SQL-LINQ connection

  • 0

I have a WPF C# Application which is accessing data through a SQL-LINQ connection and putting it on a Datagrid. I have added a Running Pips column and have been trying to figure out how in to get this column populated correctly. I have found several methods through searching the web, but none of these are appropriate for my particular setup. Most of the time I end up in an endless loop. I would like the Running Pips column to be cumulative and the order of the calculation to start from the earliest ‘Close Time’.

Close Time   Profit    Running Profit
 10.09.11     $10          $10 
 10.10.11     $20          $30 
 10.11.11     $15          $45 

Here is a summary of the code. I hope someone can suggest how to fix this code with any relevant information needed to aid me in implementing this:

public void RefreshClose() {
    if (CloseTradeCollection == null) return;
    var i = 0;

    if (StaticTool.SelectedAccount == null) {
        ExistCloseTrade = false;
        CloseTradeCollection.Clear();
        return;
    }

    Account = StaticTool.SelectedAccount;

    foreach (var trade in GetClosedTradesFromDb()) {
        if (CloseTradeCollection.Count <= i) {
            ExistCloseTrade = true;
            var tradeDetails = new Trade {
                Id = trade.id,
                Ticket = trade.ticket,
                OpenTime = trade.opentime,
                CloseTime = trade.closetime,
                Symbol = trade.symbol,
                OpenPrice = trade.openprice,
                ClosePrice = trade.closeprice,
                Profit = trade.profit,
                Comment = trade.comment.Trim(),
            };

            tradeDetails.History = tradeDetails.CloseTime - tradeDetails.OpenTime;
            CloseTradeCollection.Add(tradeDetails);
        }

        else {
            var tradeDetails = CloseTradeCollection[i];
            tradeDetails.Id = trade.id;
            tradeDetails.Ticket = trade.ticket;
            tradeDetails.OpenTime = trade.opentime;
            tradeDetails.CloseTime = trade.closetime;
            tradeDetails.Symbol = trade.symbol;
            tradeDetails.OpenPrice = trade.openprice;
            tradeDetails.ClosePrice = trade.closeprice;
            tradeDetails.Profit = trade.profit;
            tradeDetails.Comment = trade.comment.Trim();
            tradeDetails.History = DateTime.Now - tradeDetails.OpenTime;

            //tradeDetails.RunningProfit = ????????

        }

        i++;
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:02:13+00:00Added an answer on May 26, 2026 at 6:02 am

    You can create a local variable to keep track of running profit, making use of the fact that the assignment operation returns the value being assigned.

    tradeDetails.RunningProfit = (runningProfit = runningProfit + trade.profit);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please help! Background info I have a WPF application which accesses a SQL Server
I have a very simple WPF application in which I am using data binding
I have a WPF application in which I have a hook at PreviewTextInput, through
I have a WPF application which tightly coupled to linq2sql through WCF. It now
I have a WPF application in which I'm moving data around on a Canvas.
We have a WPF application which gets data from an Analysis Services Cube. The
I have a C# WPF desktop application which uses SQL Compact 3.5 as its
I have a WPF application which saves its data to XML files in a
I have a simple WPF application which I am trying to start. I am
I have an XBAP WPF application which displays various pages inside of a Frame.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.