TradingView Strategy Tester 利润计算公式
TradingView Strategy Tester Profit Calculation formula
TradingView 的策略测试器如何真正计算利润?
我在他们的帮助中心阅读了an article。它指出他们通过 (close rate - open rate)
.
计算
我的尝试
- 初始余额 = 300 美元
- 手续费 = 0.1%
就我而言,第一个订单应该是 3.6307 - 3.5487 = 0.082
。 0.082 美元绝对不是 6.28 美元。
尽管我没有包括费用,但利润百分比是匹配的。 profit % = (close rate - open_rate) / open_rate * 100 = (3.6307 - 3.5487) / 3.5487 * 100 = 2.3107053287119226759094879815144
(匹配项)
他们是如何获得 6.28 美元利润的?
首先,让我们计算一下您的毛利:
Profit is :(3.6307-3.5487) * 84 = 6.888
//Sell Price - Buy price times the contracts you traded
//Commission is 0.1% of the value traded; that means the commission you pay is
(3.6307 + 3.5487) * 84* 0.1% = 0.6031........
//I combined calculation for buy side and sell side here
Net profit = 6.888 - 0.6031 = 6.2849 (appx)
TradingView 的策略测试器如何真正计算利润?
我在他们的帮助中心阅读了an article。它指出他们通过 (close rate - open rate)
.
我的尝试
- 初始余额 = 300 美元
- 手续费 = 0.1%
就我而言,第一个订单应该是 3.6307 - 3.5487 = 0.082
。 0.082 美元绝对不是 6.28 美元。
尽管我没有包括费用,但利润百分比是匹配的。 profit % = (close rate - open_rate) / open_rate * 100 = (3.6307 - 3.5487) / 3.5487 * 100 = 2.3107053287119226759094879815144
(匹配项)
他们是如何获得 6.28 美元利润的?
首先,让我们计算一下您的毛利:
Profit is :(3.6307-3.5487) * 84 = 6.888
//Sell Price - Buy price times the contracts you traded
//Commission is 0.1% of the value traded; that means the commission you pay is
(3.6307 + 3.5487) * 84* 0.1% = 0.6031........
//I combined calculation for buy side and sell side here
Net profit = 6.888 - 0.6031 = 6.2849 (appx)