Questions about built-in indicators, custom indicators, and technical analysis.
2026-07-19 4 discussions
Add Discussion
Dave Reynolds2026-07-19
got custom indicators from mt4. can i import them or do i need to rebuild everything?
Support2026-07-19
You can add custom Python indicators by placing a .py file into the indicators folder — they become available automatically. Check the docs for the expected format.
Julia Kovalenko2026-07-19
is there a way to scan for rsi divergences across multiple symbols? want to find setups without checking each chart manually
Sarah Mitchell2026-07-19
i built a divergence scanner using rsi node + custom condition that checks price vs rsi direction. happy to share the template - scans ur watchlist and sends alerts
Support2026-07-19
You can build a divergence scanner as a Python indicator — check for price/RSI direction mismatches in your custom script. Several users have shared their implementations on the forum.
Marcus Williams2026-07-20
i modified one of the built-in indicators but now it shows twice in the list. anyway to remove the old one?
Support2026-07-20
If you edited an existing indicator file, try restarting the application. Each indicator file in the indicators folder should appear once. Check that you don't have duplicate copies of the file in the folder.
Julia Kovalenko2026-07-20
check ur indicators folder - u probably saved the modified version with a new name by accident. delete the old one
Emily Watson2026-07-20
how do i make an indicator that uses data from two different timeframes at once? like rsi on hourly but price on 15m
Marcus Williams2026-07-20
u can do that actually. add two chart sources in ur indicator script with different timeframes. the example files in indicators folder show the format
Support2026-07-20
Custom indicators can reference data from different timeframes. The example files in the indicators folder demonstrate the structure for working with multiple data sources.