3 Tips to make your code more pythonic
This article will introduce you to the top 3 ways you might not be fully taking advantage of to write better Python code, including: List Comprehension Dictionary Access ...
This article will introduce you to the top 3 ways you might not be fully taking advantage of to write better Python code, including: List Comprehension Dictionary Access ...
Overview It is common that a trading algorithm involves a number of user defined trading parameters. To optimize the algorithm's trading performance, developers usually need to tweet the parameters, re-run ...
Hi I sent a market order with 1% stop loss condition like below. def = AlgoAPIUtil . OrderObject( ...
Hello, I found that the close order API only support market order. How can I close a position using limit order? ...
My strategy needs 1-year of past closing prices to build the tensorflow model. I see the platform processing data in a stream format. Is it possible to get historical data be ...
This tutorial will demonstrate how you can install Anaconda, a powerful package manager, on Microsoft Windows. What is Anaconda? Anaconda is a distribution of Python. It is free and open-source and makes package management and deployment simpler. Keep reading to see how. It is the standard platform for Python data science an ...
What market data is available on ALGOGENE? The list below will get update from time to time. ASSET CLASS SYMBOL DESCRIPTION AVAILABLE FROM ...
We are pleased to announce that ALGOGENE is now available as a plugin for MetaTrader (MT4 and MT5)! ...
New features For more feasibility of our platform, ALGOGENE now supports new features: import multiple custom data files specify user-defined file formats ...
Following this post , I have trained a model using the online Juypter Notebook. My question is how can I dep ...
Working with text files is a common task in programming, and Python makes it incredibly easy. Whether you're logging data, manipulating configurations, or analyzing datasets, leveraging Python’s po ...
This may be a simple question. My trading idea is to buy stocks which have positive excess return base on CAPM theory. Anyone can give some guidance how the backtest code should be ...
Hi, I tried to use the getHistoricalBar to retrieve past price data based on the tech docs, but it doesnt work, got some missing evt or mevt error. ...
I was exploring 09988HK dataset. I noticed that the volume and price data are not consistent and vary greatly from the data i have from my broker and also data from tradingview. Can i know the sour ...
May I know if this error is triggered by insufficient virtual memory? How could I solve this? Thank you so much ...
I have a question regarding position netting. From the Tech Doc description here , it mentioned that PL will be realized when the ...
I have used machine learning algorithms to assist in the development of trading strategies. However, I found that some libraries I used are not available in the backtest engine. So I would like to kno ...
I was testing my strategy for the algo challenge, but I saw for one moment the WTIUSD has data missing in 2022-01-17 while it should not. Is this a bug from market data feed? ...
Here comes a new platform feature on ALGOGENE to directly work with Jupyter Notebook! ...
When developing a trading algorithm, it may be the case where we have trained/built a particular model for a financial instrument and want to apply it on other financial sectors/markets. For such c ...
For the competition we should be having access to minute data right? But when i am trying to access minute data using REST API it gives the following error " ...
Hi , is it possible to import a cython module into the strategy code to use its functions ? ...
I have a strategy that works well with 3-hour candles. However, I don't see such option in the backtest setting. How can I do that? ...
i have a invite cript which source code i cannot acccess and i want to make it auto trade .indicator is on trading view and it generates buy sell alerts i want as soon as i get any alert it trade in m ...
I looked at this article about backtesting with custom datasets, which ...