RSI-PI/examples/example_07_graphing_live.py
2025-04-27 02:03:42 +01:00

12 lines
178 B
Python

from RSIPI import rsi_api
rsi = rsi_api.RSIAPI()
rsi.enable_graphing()
rsi.start_rsi()
print("Live graphing started. Press Enter to stop.")
input()
rsi.stop_rsi()