Install
openclaw skills install unbeatable-condor-strategyCheck daily if given stocks hit the 4% volatility threshold condor signal. 无敌鹰式策略
openclaw skills install unbeatable-condor-strategyThis skill determines whether it's safe and profitable to sell a Short Iron Condor or Strangle on specific target stocks today. It uses the us_hk_50b stocks historic data (100 months) to train a LightGBM Quantile Regressor that predicts the 10% and 90% confidence boundaries for tomorrow's price relative to today's close.
If the width of this boundary exceeds 4.00% (0.04), it issues a signal to SELL premium for extreme Theta collection at those strikes.
Before running the script, ensure the following Python libraries are installed:
pip install pandas numpy lightgbm yfinance
When the user asks you to check if a specific stock (e.g. AAPL, NVDA, TSLA or 0700.HK) hit the operational condor signal, you should run the condor_signals.py script passing the stock tickers.
# Make sure to run this using the appropriate python environment that has lightgbm, pandas, and yfinance installed.
python condor_signals.py AAPL NVDA TSLA 0700.HK
The script will automatically grab the latest market data directly up to the closing price, generate features, train the AI model, and output precise strike thresholds (Sell Put Strike, Sell Call Strike).
If the script outputs [SIGNAL TRIGGERED], output to the user:
If the script outputs [NO SIGNAL], inform the user that the implied risk-adjusted volatility width is too narrow and they should abstain from Condor trades on the stock today.