local orderTable = InputTable(
InputTableOptions('Orders'),
InputTableColumn('ID', 'buy', 'sl', 'sell'),
InputTableColumn('Market Order', false, true, false),
InputTableColumn('Direction', '+', '-', '-'),
InputTableColumn('Target Price', 62000, 61800, 63000),
InputTableColumn('Amount', 0.002, 0.002, 0.002),
InputTableColumn('Before *', '', 'sell', ''),
InputTableColumn('After *', '', 'buy', 'buy'),
InputTableColumn('Trigger Type *', '', '<', ''),
InputTableColumn('Trigger Price *', '', 61800, '')
)
local isDebug = Input('Debug Mode', false)
function debuglog(msg, color)
if not isDebug then return end
Log('[DEBUG] ' .. msg, color or '')
end
EnableHighSpeedUpdates(true)
HideOrderSettings()
HideTradeAmountSettings()
-- ===============================================================
-- Config object
local Config = {}
function Config:isSpot()
return MarketType() == SpotTrading
end
-- ===============================================================
-- Enums
local TableItem =
{
Id = 1,
IsMarket = 2,
Direction = 3,
TargetPrice = 4,
Amount = 5,
Before = 6,
After = 7,
TriggerType = 8,
TriggerPrice = 9
}
local TriggerType =
{
LowerThan = '<',
HigherThan = '>',
Normal = ''
}
local OrderDirection =
Jun 06, 23, 16:09:02 Bot deactivated
Jun 06, 23, 16:09:02 Backtest start date: 06/06/23 16:09:02 GTM+0
Jun 06, 23, 16:09:02 Backtest end date: 06/06/23 16:09:02 GTM+0
Jun 06, 23, 16:09:02 Backtest took: 00:00:01.6642358ms
Jun 06, 23, 16:09:02 ----- Custom Report -----
Jun 06, 23, 16:09:02 Estimated Profit: 0.01 BTC
Jun 06, 23, 16:09:02 ----- Backtest report BINANCE_BNB_BTC_ -----
Jun 06, 23, 16:09:02 Gross profits: 100.00000000 BNB
Jun 06, 23, 16:09:02 Fee costs: 10.00000000 BNB
Jun 06, 23, 16:09:02 Realized profits: 90.00000000 BNB
Jun 06, 23, 16:09:02 Return on investment: 10.0000 %
Jun 06, 23, 16:09:02 Price change: 0.0306%
Jun 06, 23, 16:09:02 Closed positions: 100x
Jun 06, 23, 16:09:02 Profitable positions: 60x (90.00%)
Jun 06, 23, 16:09:02 Losing positions: 40x (10.00%)
Jun 06, 23, 16:09:02 Average margin: 5.00000000 BNB
Jun 06, 23, 16:09:02 Average realized profits: 10.00000000 BNB
Jun 06, 23, 16:09:02 Executed orders: 100x
Jun 06, 23, 16:09:02 Completed order: 100x
Jun 06, 23, 16:09:02 Average open time: 10 seconds
Jun 06, 23, 16:09:02 ----- Performance report BINANCE_BNB_BTC_ -----
Jun 06, 23, 16:09:02 Max. DrawDown: 1.00% / 40.00000000 BNB
Jun 06, 23, 16:09:02 Sharpe Ratio: 1.00
Jun 06, 23, 16:09:02 Sortino Ratio: 1.00
Jun 06, 23, 16:09:02 Win %: 3.00 %
Jun 06, 23, 16:09:02 Profit Ratio: 3.00
Jun 06, 23, 16:09:02 Profit Factor: 3.00
Jun 06, 23, 16:09:02 CPC Index: 1.00
Jun 06, 23, 16:09:02 Tail Ratio: 2.00
Jun 06, 23, 16:09:02 Common Sense Ratio: 2.00
Jun 06, 23, 16:09:02 Outlier Win Ratio: 3.00
Jun 06, 23, 16:09:02 Outlier Loss Ratio: 1.00
Jun 06, 23, 16:09:02 Profit Margin Ratio: 54.00
Jun 06, 23, 16:09:02 Biggest Win: 100.00000000
Jun 06, 23, 16:09:02 Biggest Loss: -100.00000000
Jun 06, 23, 16:09:02 Highest Point in PNL: 5.00000000
Jun 06, 23, 16:09:02 Lowest Point in PNL: -5.00000000
*These numbers are for illustration only and do not reflect past or future performance.