strategy-initialization

Configure LivTorgEx bot spawn-time entry mode, direction, and position sizing.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/LivTorgEx/strategy-skill --skill strategy-initialization
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: strategy-initialization
Source: https://github.com/LivTorgEx/strategy-skill/tree/main/skills/strategy-initialization
Command: npx skills add https://github.com/LivTorgEx/strategy-skill --skill strategy-initialization

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes guesswork when configuring how a LivTorgEx bot enters a position at spawn time, so your strategy consistently follows your intended entry mode, direction, sizing, and pre-spawn gating rules.

Core Features & Use Cases

  • Entry mode control (enter_price): Choose whether the bot enters immediately (Force), waits for follow-up conditions (Wait), follows a signal price (Signal), or targets an indicator value (Indicator).
  • Initial direction resolution (enter_direction): Set direction via defaults, signals (follow/opposite), indicator direction, or computed value-based direction logic.
  • Initial sizing and compounding (enter_amount, auto_max_amount_leverage): Define initial margin allocation (currently percentage-based) and optionally enable PnL-compounding via AutoMaxAmount.
  • Pre-spawn strategy gates and overrides (filters, changes): Apply an AND-list of spawn-time filters and pre-initialize overrides for direction/amount before variables resolve.
  • Optional DCA/scaling via extra_orders: Add looped or fixed additional orders after the initial entry for simpler strategies that do not rely on on_analysis.

Quick Start

Use strategy-initialization to configure professional entry fields so a bot spawned by your filters opens with a Force market entry, uses Percentage sizing from MaxAmount, and optionally compounds PnL using auto_max_amount_leverage.

Frequently Asked Questions about strategy-initialization

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure trading bot entry logic for deterministic spawn behavior?

Bot entry mode selection determines whether a bot enters immediately via Force, waits for conditions via Wait, follows a Signal price, or targets an Indicator value. These options are set using the professional.enter_price JSON field during strategy initialization.

Can I use PnL compounding for initial position sizing in trading bots?

Pre-spawn strategy gates use an AND-list of filters evaluated at spawn time via professional.filters, while pre-initialize overrides for direction and amount are applied before variables resolve using professional.changes. This ensures deterministic behavior before new bot positions are created.

How to add DCA scaling orders after a bot's initial entry?

DCA scaling orders after initial entry are added using the optional professional.extra_orders field to configure looped or fixed additional orders. This provides simpler strategy scaling for bots that do not rely on on_analysis callbacks.

What's the best way to resolve initial trade direction when spawning a bot?

Initial trade direction resolution is best handled via the professional.enter_direction field, supporting defaults, signals (follow or opposite), indicator direction, or computed value-based direction logic. This ensures bots enter positions matching intended strategy rules.