tvdatafeed icon indicating copy to clipboard operation
tvdatafeed copied to clipboard

Secret of Pivot Boss

Open ramniwas74 opened this issue 3 years ago • 0 comments

Sir, Initial_balance and wick_reversal are working fine, but while i am trying to run extreme_reveral there is a problem in import module ie. "from historical_data import get" this module is not find i am using visual studio code. pse help me how to solve this issue the code is written below from historical_data import get import pandas as pd import numpy as np import datetime import matplotlib.pyplot as plt import mplfinance as mpf

ohlc_data = get("TCS", "eq") resampling_dict = { "open": "first", "high": "max", "low": "min", "close": "last", "volume": "sum", } ohlc_data = ohlc_data.resample("30min", offset="15min").apply(resampling_dict).dropna() with warm regards ram niwas

ramniwas74 avatar Feb 28 '22 06:02 ramniwas74