ichimoku

Generate trading signals from Ichimoku Kinko Hyo indicators using pandas.

Updated Jun 12, 2026
One-click install
npx skills add https://github.com/GGwujun/SigmX --skill ichimoku-ggwujun
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ichimoku
Source: https://github.com/GGwujun/SigmX/tree/main/agent/src/skills/ichimoku
Command: npx skills add https://github.com/GGwujun/SigmX --skill ichimoku-ggwujun

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, requests, and includes references (resource) components.

What problem does it solve?

This skill provides a standalone Ichimoku Kinko Hyo signal engine that converts multi-line indicators into clear trading signals, reducing the need for manual interpretation of cloud and line interactions.

Core Features & Use Cases

  • Five-line system computes Tenkan-sen, Kijun-sen, Senkou Span A/B, and Chikou Span to evaluate trend and entry/exit signals.
  • Triple-filter signal logic requires TK crossovers plus price relative to the cloud and cloud direction for robust signals.
  • Warm-up requirement: signals become valid after 78 candles (52 + 26).
  • Use Case: backtest or live-trade signals on equities or crypto using OHLCV data with adjustable periods.

Quick Start

Feed OHLCV data for your symbols into the engine to generate TK-cross based signals.

Frequently Asked Questions about ichimoku

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

FAQPage Schema
How do I generate Ichimoku trading signals using pandas?▼

To generate Ichimoku trading signals using pandas, you feed OHLCV time-series data into the engine to compute the five-line system and detect TK crossovers, cloud breaks, and trend confirmations. It outputs clear, actionable trading signals.

How does the triple-filter logic work for Ichimoku cloud signals?▼

The triple-filter logic for Ichimoku cloud signals validates trades by requiring a TK crossover, confirming price position relative to the cloud, and checking the cloud direction. This robust filtering reduces false positives from single-line interactions.

Can I backtest crypto and equities with this Ichimoku indicator?▼

Yes, you can backtest crypto and equities with this Ichimoku indicator by supplying OHLCV price data. It applies triple-filter signal logic across time-series assets with configurable periods for both live analysis and historical backtesting.

Why do my Ichimoku signals require 78 candles to become valid?▼

Ichimoku signals require 78 candles to become valid due to the warm-up requirement for calculating the Senkou Span lines. This 78-candle warm-up period (52 + 26) ensures accurate displacement handling before generating trading signals.

What is the best way to calculate Tenkan-sen and Kijun-sen for trend confirmation?▼

The best way to calculate Tenkan-sen and Kijun-sen for trend confirmation is using a pure Python pandas implementation that computes all five Ichimoku lines. It evaluates line interactions to deliver reliable entry and exit signals.

Does this Ichimoku signal engine support customizable indicator periods?▼

Yes, this Ichimoku signal engine supports customizable indicator periods for the five-line system. You can adjust the Tenkan-sen, Kijun-sen, and Senkou Span periods to fit your specific backtesting or live-trading strategy.