Source code for tradeexecutor.visual.inline_image

"""Visualise the strategy state as an image.

- Draw the latest price action start

- Plot indicators on this

- Make this available PNG for sharing

"""
from tradeexecutor.state.state import State


[docs]def draw_strategy_state_inline_image(state: State): pass