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