iSkywalker168

Results 3 issues of iSkywalker168

``` from AlgorithmImports import * import datetime import os import ctypes class QuantConnectVilla(QCAlgorithm): def initialize(self): self.set_time_zone(TimeZones.UTC) self.set_account_currency("FDUSD") # for backtesting self.set_start_date(2024, 6, 24) self.set_end_date(2024, 6, 26) self.set_cash("FDUSD", 100) self.set_brokerage_model(BrokerageName.BINANCE, AccountType.MARGIN)...

it seems JMA behaves better than EMA in some situations. and pandas_ta already has JMA indicator(pandas_ta.jma). here are the formula info: https://br.tradingview.com/script/nZuBWW9j-Jurik-Moving-Average/ http://jurikres.com/catalog1/ms_ama.htm https://c.mql5.com/forextsd/forum/164/jurik_1.pdf ![image](https://github.com/user-attachments/assets/cb2e2954-9f65-46ee-9e3a-ade874e6876a) ![image](https://github.com/user-attachments/assets/4de8697c-1553-46fd-92f8-d894c86d2377)

indicator

thank you for the great project. valuable for online trading. I found one issue, could you please fix it? vwap from pandas_ta will reset volume for each day(can pass in...