Rahul Raut

Results 41 comments of Rahul Raut

@twopirllc Hey sorry was busy with some office work. Thanks for the detailed explanation. I will try it out. Sometimes too much is also confusing so asked for helped. Once...

And yes I want to do it for commodity - Natural Gas futures only. I will not try on too many stocks at a time.

@twopirllc Just one suggestion if you find it good. Like many people who start coding in python for algo trading and then look for strategies and backtesting, I also keep...

@twopirllc Thanks I am loving the discussion. I will work on the points you have suggested.

@twopirllc Check [this](https://colab.research.google.com/drive/1h1r4G1arVHNEJ8rL35rP1ZffUBlzZaa_?usp=sharing) jupyter notebook. I am getting this kind of data which I want to store in 1/5/10/15 minute(s) dataframe and check the various indicators and candlestick patterns from...

I also got a way to get streaming data from TV - check it [here](https://gist.github.com/algo2t/34f4462f6e8670249f7c58545eb83db4) with crypto example and valid for some NSE stocks as well.

> @rahulmr, > > Cool. I will check it out as soon as I can. > > One thing I noticed is that you shared your `access_token`. I would fix...

@twopirllc I was trying to run the below code on a dataframe ``` df.ta.strategy("Momentum") print(df) ``` It goes into infinite loop and consumes all CPU on my windows 10 laptop....

So finally I started working on this long pending stuff. Here is my code ```python import yfinance as yf import pandas_ta as ta import schedule sbin = yf.Ticker("SBIN.NS") def place_order(order_type):...

> So finally I started working on this long pending stuff. > Here is my code > > ```python > import yfinance as yf > import pandas_ta as ta >...