Search found 4 matches
- 08 Sep 2020 18:08
- Forum: DOS Batch Forum
- Topic: NFL fantasy league draft batch program. Thoughts?
- Replies: 1
- Views: 2782
NFL fantasy league draft batch program. Thoughts?
I'm trying to develop a fantasy league draft manager. I want it to color code players that get picked. The program seems to slow down when several players are selected. Any good ways to optimize this? I already feel like I am going to need a billion goto statements to update every players status. @e...
- 18 Jun 2018 16:56
- Forum: DOS Batch Forum
- Topic: convert file with 15 minute stock market data to hourly and daily
- Replies: 4
- Views: 4961
Re: convert file with 15 minute stock market data to hourly and daily
That's perfect! Amazing! I added a credit to you Aacini in the batch file as well as a link to this thread.
- 18 Jun 2018 13:42
- Forum: DOS Batch Forum
- Topic: convert file with 15 minute stock market data to hourly and daily
- Replies: 4
- Views: 4961
Re: convert file with 15 minute stock market data to hourly and daily
Well for example, the output for the 15 minute to daily conversion would be: 2017.09.01,09:30,247.93,248.30,247.68,247.88,(sum of all volumes from september 1st) 2017.09.05,09:30,247.24,247.51,244.95,246.09,(sum of all volumes from september 5th) 2017.09.06.09:30,246.85,247.28,246.23,246.91,(sum of ...
- 17 Jun 2018 17:10
- Forum: DOS Batch Forum
- Topic: convert file with 15 minute stock market data to hourly and daily
- Replies: 4
- Views: 4961
convert file with 15 minute stock market data to hourly and daily
Hi! I have a text file with 15 minute stock market data. I'd like a simple batch file to convert this into both hourly and daily data and write it to a text file. 1. Each line is data for 15 minutes. 2. The data is strings separated by commas. 3. The first string is the date. (for example, the date ...