alpacahq / Momentum-Trading-Example

An example algorithm for a momentum-based day trading strategy.
656 stars 218 forks source link

Unknown Channel A.ADAP and Unknown Channel A.AIM #29

Open mackenly opened 4 years ago

mackenly commented 4 years ago

When I run the script I get the following: image

I've made modifications with the fixes in #14, #4, and from ta.trend import macd from #8

The following are the errors given: image and also: image

I haven't seen any other issues addressing these errors. I'm currently running it on Digital Ocean's App Platform.

zenwaffles commented 3 years ago

I had this problem as well. I fixed this by adding data_stream='polygon' to the StreamConn. I think it is on line 75 if I am not mistaken, or around there. Its the first thing in the 'run' function.

Screenshot for reference: image

mackenly commented 3 years ago

@zenwaffles Awesome, I'll try that.