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 =
Dec 02, 23, 06:52:31 Bot deactivated
Dec 02, 23, 06:52:31 Backtest start date: 12/02/23 06:52:31 GTM+0
Dec 02, 23, 06:52:31 Backtest end date: 12/02/23 06:52:31 GTM+0
Dec 02, 23, 06:52:31 Backtest took: 00:00:01.6642358ms
Dec 02, 23, 06:52:31 ----- Custom Report -----
Dec 02, 23, 06:52:31 Estimated Profit: 0.01 BTC
Dec 02, 23, 06:52:31 ----- Backtest report BINANCE_BNB_BTC_ -----
Dec 02, 23, 06:52:31 Gross profits: 100.00000000 BNB
Dec 02, 23, 06:52:31 Fee costs: 10.00000000 BNB
Dec 02, 23, 06:52:31 Realized profits: 90.00000000 BNB
Dec 02, 23, 06:52:31 Return on investment: 10.0000 %
Dec 02, 23, 06:52:31 Price change: 0.0306%
Dec 02, 23, 06:52:31 Closed positions: 100x
Dec 02, 23, 06:52:31 Profitable positions: 60x (90.00%)
Dec 02, 23, 06:52:31 Losing positions: 40x (10.00%)
Dec 02, 23, 06:52:31 Average margin: 5.00000000 BNB
Dec 02, 23, 06:52:31 Average realized profits: 10.00000000 BNB
Dec 02, 23, 06:52:31 Executed orders: 100x
Dec 02, 23, 06:52:31 Completed order: 100x
Dec 02, 23, 06:52:31 Average open time: 10 seconds
Dec 02, 23, 06:52:31 ----- Performance report BINANCE_BNB_BTC_ -----
Dec 02, 23, 06:52:31 Max. DrawDown: 1.00% / 40.00000000 BNB
Dec 02, 23, 06:52:31 Sharpe Ratio: 1.00
Dec 02, 23, 06:52:31 Sortino Ratio: 1.00
Dec 02, 23, 06:52:31 Win %: 3.00 %
Dec 02, 23, 06:52:31 Profit Ratio: 3.00
Dec 02, 23, 06:52:31 Profit Factor: 3.00
Dec 02, 23, 06:52:31 CPC Index: 1.00
Dec 02, 23, 06:52:31 Tail Ratio: 2.00
Dec 02, 23, 06:52:31 Common Sense Ratio: 2.00
Dec 02, 23, 06:52:31 Outlier Win Ratio: 3.00
Dec 02, 23, 06:52:31 Outlier Loss Ratio: 1.00
Dec 02, 23, 06:52:31 Profit Margin Ratio: 54.00
Dec 02, 23, 06:52:31 Biggest Win: 100.00000000
Dec 02, 23, 06:52:31 Biggest Loss: -100.00000000
Dec 02, 23, 06:52:31 Highest Point in PNL: 5.00000000
Dec 02, 23, 06:52:31 Lowest Point in PNL: -5.00000000
*These numbers are for illustration only and do not reflect past or future performance.