Metadata-Version: 2.1
Name: JesseTradingViewLightReport
Version: 1.0.7
Summary: Generate an html document containing all of the scripts and data to load tradingview and review the results
Home-page: https://github.com/qwpto/JesseTradingViewLightReport
Author: qwpto
Author-email: 109690977+qwpto@users.noreply.github.com
Project-URL: Bug Reports, https://github.com/qwpto/JesseTradingViewLightReport/issues
Project-URL: Source, https://github.com/qwpto/JesseTradingViewLightReport/
Keywords: jesse,trade,tradingview,report
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
License-File: LICENSE.txt

# Jesse tradingview light reporting library

Generate an html document containing all of the scripts and data to load tradingview and review the results. This can be generated within a strategy at regular intervals to review the results live.

install with:
	pip install JesseTradingViewLightReport

To generate just the candlestick, volume, and order report - Add the following to your strategy:

	import JesseTradingViewLightReport
	 
		def terminate(self):
			JesseTradingViewLightReport.generateReport()


But you can also add custom data for example:

	generateReport(customData={"atr":{"data":self.atr, "options":{"pane":1, "colour":'rgba(251, 192, 45, 1)'}}, 'two':{"data":self.candles[:,1]-5, "options":{"pane":2}, "type":"HistogramSeries"}, 'three':{"data":self.candles[:,1]+5, "options":{"pane":2, "color":'purple'}}})

	![alt text](https://github.com/qwpto/JesseTradingViewLightReport/blob/release/example1.jpg?raw=true)

For more information on plot types and options see:
- https://tradingview.github.io/lightweight-charts/docs/api
- https://www.tradingview.com/lightweight-charts/
