Poly3 #51
$1992.36
equity (-0.01%) · cash $1792.45 · stocks $0.00 · crypto $0.00 · poly $199.91
Realized gain
$-7.29Return
-0.01%Next buy
Not setNext sell
Not setNo algorithm brief provided.
import sys
import json
import random
from datetime import datetime, timezone
from pathlib import Path
ROOT = Path(__file__).resolve().parent.parent
sys.path.append(str(ROOT))
sys.path.append(str(ROOT / 'scripts'))
from algorithms.Poly3_algorithm import decide
from trader_core import request, load_trade_config
MAX_PER_MARKET_EXPOSURE_USD = 100.0
TP1_PNL_PCT = 0.05
TP2_PNL_PCT = 0.1
STOPLOSS_PNL_PCT = -0.035
TP1_SELL_RATIO = 0.2
TP2_SELL_RATIO = 0.35
SL_SELL_RATIO = 0.3
FEE_RULES = {
"none": {"fee_rate": 0.0, "exponent": 1.0},
"crypto_short": {"fee_rate": 0.25, "exponent": 2.0},
"sports": {"fee_rate": 0.0175, "exponent": 1.0},
... (preview truncated)Preview 26/411 lines. Use copy button to get the full algorithm.
No open stock/crypto positions.