-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathGet-StrategyReportCsvStatistics.ps1
309 lines (254 loc) · 8.18 KB
/
Get-StrategyReportCsvStatistics.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<#
.SYNOPSIS
Output statistics from a thinkorswim strategy file exported as csv.
.PARAMETER File
Name or of csv file to process.
.PARAMETER ShowFileContents
If true, will output the contents of the csv file and calculated properties.
.NOTES
Author Kory Gill, @korygill
.LINK
https://github.com/korygill/technical-analysis
#>
[CmdletBinding()]
param (
[string]
$File = 'D:\temp\StrategyReports_SPX_GapWithStop.csv',
[switch]
$ShowFileContents
)
#
# functions
#
function Convert-CurrencyStringToDecimal ([string]$input)
{
((($input -replace '\$') -replace '[)]') -replace '\(', '-') -replace '[^-0-9.]'
}
function Add-Statistic ([string]$statistic, [double]$data)
{
$dbl = [math]::Round($data, 2)
$dblStr = "{0:N2}" -f $dbl
#Write-Information "$statistic $dblStr"
$null = $outData.Add(
[PSCustomObject]@{
'Statistic'=$statistic
'DblData'=$dbl
'Data'=$dblStr
}
)
}
function Write-Header
{
Write-Output "$("="*78)"
}
#
# start of main script
#
# Makes debugging from ISE easier.
if ($PSScriptRoot -eq "")
{
$root = Split-Path -Parent $psISE.CurrentFile.FullPath
}
else
{
$root = $PSScriptRoot
}
Set-Location $root
if (-not (Test-Path $File))
{
throw "Cannot open file '$File'."
}
# read csv file
$outData = [System.Collections.ArrayList]::new()
$content = Get-Content -Path $File
$csvdata = $content | ? {$_ -match ";.*;"} | ConvertFrom-Csv -Delimiter ';'
$tradeUnitSize = 0;
if ($csvdata.Count)
{
$tradeUnitSize = [math]::Abs($csvdata[0].Amount)
}
Write-Header
Write-Output "Trade Unite Size is '$tradeUnitSize' (FYI: 1 ES == 50 SPX units)`r`n"
# convert currency strings to decimal
# calculate properties
foreach ($item in $csvdata)
{
$item.Amount = [double]($item.Amount | Convert-CurrencyStringToDecimal)
$item.Price = [double]($item.Price | Convert-CurrencyStringToDecimal)
$tpl = [double]($item.'Trade P/L' | Convert-CurrencyStringToDecimal)
$item.'Trade P/L' = if ($tpl -eq 0) {""} else {$tpl}
$pl = [double]($item.'P/L' | Convert-CurrencyStringToDecimal)
$item.'P/L' = if ($pl -eq 0) {""} else {$pl}
if ($tpl -eq 0)
{
$item | Add-Member -MemberType NoteProperty -Name "Points" -Value 0
}
else
{
$apl = [math]::Abs($item.Amount)
$item | Add-Member -MemberType NoteProperty -Name "Points" -Value ($tpl/$apl*($apl/$tradeUnitSize))
}
}
if ($ShowFileContents)
{
$csvdata | ft -AutoSize
}
#
# get only lines that have Trade P/L
#
$tradepl = $csvdata | ? {$_.'Trade P/L'}
Write-Header
Write-Output "Trade distribution by trade size (1 ES == 50 SPX units)"
$tradepl | Group Amount | Sort {[int]$_.Name} | Select @{n='Trades'; e={$_.Count}}, @{n='TradeSize';e={[int]$_.Name*-1}} | ft
#
# calc trade length stats
#
$openCloseTrade = [System.Collections.ArrayList]::new()
$firstOpen = $false
$openTrade = $null
$closeTrade = $null
foreach ($item in $csvdata)
{
if ($item.Side -match "to Open" -and $firstOpen -eq $false)
{
$firstOpen = $true
$openTrade = $item
}
elseif ($item.Side -match "to Close")
{
$closeTrade = $item
}
# for trades that open and close on the same day, TOS report has close trade before open trade in the file.
# use this logic to match them.
if ($firstOpen -and $closeTrade)
{
$null = $openCloseTrade.Add(
[PSCustomObject]@{
'FirstOpenTrade'=$openTrade
'CloseTrade'=$closeTrade
}
)
$firstOpen = $false
$openTrade = $null
$closeTrade = $null
}
}
#
# all trades
#
$tradeDuration = [System.Collections.ArrayList]::new()
foreach ($trade in $openCloseTrade)
{
$openDate = [datetime]::Parse($trade.FirstOpenTrade.'Date/Time')
$closeDate = [datetime]::Parse($trade.CloseTrade.'Date/Time')
$numDays = $closeDate - $openDate
$null = $tradeDuration.Add($numDays)
}
Write-Header
Write-Output "Trade Size by Duration"
$tradeDuration.TotalDays | group | sort {[int]$_.Count}, {[int]$_.Name} | Select @{n='TradeSize'; e={$_.Count}}, @{n='Days';e={$_.Name}} | ft
#
# buys only
#
$buys = $openCloseTrade | ? {$_.FirstOpenTrade.Side -match "Buy to Open"}
$tradeDuration = [System.Collections.ArrayList]::new()
foreach ($trade in $buys)
{
$openDate = [datetime]::Parse($trade.FirstOpenTrade.'Date/Time')
$closeDate = [datetime]::Parse($trade.CloseTrade.'Date/Time')
$numDays = $closeDate - $openDate
$null = $tradeDuration.Add($numDays)
}
Write-Header
Write-Output "Long Trade Size by Duration"
if ($tradeDuration.Count)
{
$tradeDuration.TotalDays | group | sort {[int]$_.Count}, {[int]$_.Name} | Select @{n='TradeSize'; e={$_.Count}}, @{n='Days';e={$_.Name}} | ft
}
else
{
Write-Output "NONE"
}
#
# sells only
#
$sells = $openCloseTrade | ? {$_.FirstOpenTrade.Side -match "Sell to Open"}
$tradeDuration = [System.Collections.ArrayList]::new()
foreach ($trade in $sells)
{
$openDate = [datetime]::Parse($trade.FirstOpenTrade.'Date/Time')
$closeDate = [datetime]::Parse($trade.CloseTrade.'Date/Time')
$numDays = $closeDate - $openDate
$null = $tradeDuration.Add($numDays)
}
Write-Header
Write-Output "Short Trade Size by Duration"
if ($tradeDuration.Count)
{
$tradeDuration.TotalDays | group | sort {[int]$_.Count}, {[int]$_.Name} | Select @{n='TradeSize'; e={$_.Count}}, @{n='Days';e={$_.Name}} | ft
}
else
{
Write-Output "NONE"
}
#
# stats!
#
Add-Statistic "Total trades:" $($csvdata.Count)
# get only lines that have Trade P/L
# $tradepl = $csvdata | ? {$_.'Trade P/L'}
Add-Statistic "Total orders:" $($tradepl.Count)
$n = $tradepl.'Trade P/L' | Measure-Object -Maximum -Minimum -Sum -Average
Add-Statistic "Total P/L:" $($n.Sum)
Add-Statistic "Min Trade P/L:" $($n.Minimum)
Add-Statistic "Max Trade P/L:" $($n.Maximum)
$winners = $tradepl | ? {$_.'Trade P/L' -ge 0}
Add-Statistic "Winners:" $($winners.Count)
$losers = $tradepl | ? {$_.'Trade P/L' -lt 0}
Add-Statistic "Losers:" $($losers.Count)
$n = $winners.'Trade P/L' | Measure-Object -Maximum -Minimum -Sum -Average
Add-Statistic "Winner Total P/L:" $($n.Sum)
Add-Statistic "Winner Min Trade P/L:" $($n.Minimum)
Add-Statistic "Winner Max P/L:" $($n.Maximum)
$n = $losers.'Trade P/L' | Measure-Object -Maximum -Minimum -Sum -Average
Add-Statistic "Loser Total P/L:" $($n.Sum)
Add-Statistic "Loser Min Trade P/L:" $($n.Minimum)
Add-Statistic "Loser Max P/L:" $($n.Maximum)
$points = $tradepl.Points | Measure-Object -Sum -Average -Maximum -Minimum
Add-Statistic "Average Points:" $points.Average
Add-Statistic "Maximum Points:" $points.Maximum
Add-Statistic "Minimum Points:" $points.Minimum
$shortTrades = [System.Collections.ArrayList]::new()
$tplShort = $tradepl | ? {$_.Amount -gt 0}
if ($tplShort) {$shortTrades.AddRange($tplShort)}
$longTrades = [System.Collections.ArrayList]::new()
$tplLong = $tradepl | ? {$_.Amount -lt 0}
if ($tplLong) {$longTrades.AddRange($tplLong)}
Add-Statistic "Short Trades:" $shortTrades.Count
Add-Statistic "Long Trades:" $longTrades.Count
$shortPoints = if ($shortTrades.Count) {$shortTrades.Points} else {0}
$points = $shortPoints | Measure-Object -Sum -Average -Maximum -Minimum
Add-Statistic "Short Average Points:" $points.Average
Add-Statistic "Short Maximum Points:" $points.Maximum
Add-Statistic "Short Minimum Points:" $points.Minimum
$longPoints = if ($longTrades.Count) {$longTrades.Points} else {0}
$points = $longPoints | Measure-Object -Sum -Average -Maximum -Minimum
Add-Statistic "Long Average Points:" $points.Average
Add-Statistic "Long Maximum Points:" $points.Maximum
Add-Statistic "Long Minimum Points:" $points.Minimum
$exitType = ($tradepl | ? Strategy -Match 'StopLossLX')
$exit = if ($exitType) {$exitType.Count} else {0}
Add-Statistic "Exit StopLossLX:" $exit
$exitType = ($tradepl | ? Strategy -NotMatch 'StopLossLX')
$exit = if ($exitType) {$exitType.Count} else {0}
Add-Statistic "Exit NOT StopLossLX:" $exit
#
# Output Statistics
#
Write-Header
Write-Output "Statistics for '$($tradepl[0].Strategy)' from '$File'."
Write-Output "From: $($tradepl[0].'Date/Time')"
Write-Output " To: $($tradepl[-1].'Date/Time')"
$outData | Select Statistic, Data | ft
# Just a line that does nothing so you can set a breakpoint if needed before script exits.
Start-Sleep -Milliseconds 100