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