Skip to content

Ichimoku Scanner for Traders : New component for the Ichimoku Analyst Framework.

Quant & Fintech Opensource Projects edited this page Nov 14, 2022 · 1 revision

Ichimoku2022_Multithreaded_2.py

Despite its name, it is not doing the same thing as Ichimoku2022_Multithreaded.py

I should rename it but for now I let it named as is.

This component is more trading oriented.

Example of use :

python Ichimoku2022_Multithreaded_2.py -e binance -f *usdt -tf 1d,4h,2h,1h,15m,5m -l -up -down

In this case, it will scan for assets that :

  • Has their symbol name ending with "USDT" (-f *usdt)
  • Are having their price and chikou span above all their other Ichimoku levels (-up)
  • Or are having their price and chikou span below all their other Ichimoku levels (-down)
  • In the specified timeframes, here : 1d, 4h, 2h, 1h, 1h, 15m, 5m (-tf 1d,4h,2h,1h,15m,5m)
  • On Binance Exchange (-e binance)
  • And will scan in loop (-l)

You can also track only one asset, eg. BTCPERP on Bybit :

python Ichimoku2022_Multithreaded_2.py -e bybit-f BTCPERP -tf 4h,1h,15m,5m,1m -l -up -down