Ezen az oldalon egy konkrét fájl aktuális állapotát tudod megnézni.
/opt/bots/saturnus/app/config/rules.json{
"schema_version": 1,
"meta": {
"title": "Saturnus kanonikus szabályrendszer",
"profile_type": "canonical",
"updated_at_utc": null,
"source_mode": "profitless_panic_mirror_v2"
},
"definitions": {
"base": "Pozíció nyitásakor rögzített referenciaár.",
"peak": "Pozícióban elért legmagasabb ár.",
"trough": "Pozíción kívül elért legalacsonyabb ár.",
"prev_last": "Előző ár.",
"last": "Aktuális ár.",
"rising": "last > prev_last",
"falling": "last < prev_last",
"had_enough_rise": "Volt elég emelkedés a standard sell érvényesüléséhez.",
"not_enough_rise": "Nem volt elég emelkedés, ezért profitless sell ághoz tartozik.",
"had_enough_drop": "Volt elég visszaesés a standard buy érvényesüléséhez.",
"allow_profitless_buy": "A profitless buy ág logikailag engedélyezett állapot."
},
"globals": {
"enforce_sell_hierarchy": true,
"enforce_buy_hierarchy": true,
"allow_rule_disable": true,
"allow_lab_extra_rules": false
},
"sell_hierarchy": [
"standard_sell",
"profitless_sell",
"panic_sell"
],
"buy_hierarchy": [
"panic_buy",
"profitless_buy",
"standard_buy"
],
"sell_rules": [
{
"id": "standard_sell",
"title": "Standard Sell",
"side": "sell",
"enabled": true,
"priority": 10,
"goal": "Profitvédett visszafordulás.",
"description": "Standard sell akkor él, ha esés van, a std_sell szint számolható, a profitless_sell és panic_sell is ismertek, std_sell > profitless_sell > panic_sell, és last <= std_sell.",
"level_key": "std_sell",
"level_formula_human": "std_sell = peak * (1 - std_sell_pct)",
"conditions_human": [
"in_position == true",
"last < prev_last",
"std_sell != null",
"profitless_sell != null",
"panic_sell != null",
"std_sell > profitless_sell",
"profitless_sell > panic_sell",
"last <= std_sell"
],
"conditions": [
"in_position == True",
"falling == True",
"std_sell != None",
"profitless_sell != None",
"panic_sell != None",
"std_sell > profitless_sell",
"profitless_sell > panic_sell",
"last <= std_sell"
],
"params": {
"std_sell_pct": 1.0
},
"system_comment": "Kanonikus SELL#1 – legacy 1:1",
"user_comment": "",
"user_comment_updated_at_utc": null,
"lab_only": false
},
{
"id": "profitless_sell",
"title": "Profitless Sell",
"side": "sell",
"enabled": true,
"priority": 20,
"goal": "Kis nyereség vagy nullszaldó mentése.",
"description": "Profitless sell a panic sell tükörszabálya. A profitless_sell szint a panic_sell abszolút százalékából, a fix 0.2% fee-kompenzációból és a felületen állítható extra eltérésből számolódik. Kötelező az esési irány és a csúcs utáni visszahúzás.",
"level_key": "profitless_sell",
"level_formula_human": "profitless_sell = base * (1 + panic_sell_pct + fee_buffer_pct + profitless_sell_extra_pct)",
"conditions_human": [
"in_position == true",
"last < prev_last",
"profitless_sell != null",
"std_sell != null",
"panic_sell != null",
"profitless_sell < std_sell",
"profitless_sell > panic_sell",
"prev_last > profitless_sell",
"last <= profitless_sell",
"pullback_from_peak_pct >= profitless_sell_pullback_pct"
],
"conditions": [
"in_position == True",
"falling == True",
"profitless_sell != None",
"std_sell != None",
"panic_sell != None",
"profitless_sell < std_sell",
"profitless_sell > panic_sell",
"prev_last > profitless_sell",
"last <= profitless_sell",
"pullback_from_peak_pct != None",
"pullback_from_peak_pct >= profitless_sell_pullback_pct"
],
"params": {
"profitless_sell_extra_pct": 0.0,
"profitless_sell_pullback_pct": 0.3,
"fee_buffer_pct": 0.2
},
"system_comment": "Kanonikus SELL#2 – legacy 1:1",
"user_comment": "",
"user_comment_updated_at_utc": null,
"lab_only": false