исходник форекс бота / What are the requirements for a Forex trading bot? - Quora

Исходник Форекс Бота

исходник форекс бота

parabolicsaronbalancevolumemacdforexmajoreurusdeurusdlondonnewyorkstrategyautomatedtrading

This is a full strategy designed for forex major pairs, specially EUR/USD using 1h time frame chart.

Its components are
EMA
MACD
OBV
PSAR
RIsk management with tp and sl movements


Rules for entry
For long = Previous histogram from MACD was below 0 and current one is above 0. CLose of a candle is above EMA , OBV oscillator is negative and we have an uptrend from PSAR
For short = Previous histogram from MACD was above 0 and current one is below 0. CLose of a candle is below EMA , OBV oscillator is positive and we have an downtrend from PSAR

Rules for exit
For tp and sl values we calculate the distance from the close of candle until the psar values.

If you have any questions, let me know !


🔻My Website: eunic-brussels.eug
🔻Binance : eunic-brussels.eu
🔻Discord : eunic-brussels.eu
🔻Telegram : eunic-brussels.eu
🔻Premium TV : eunic-brussels.eu

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?

Search code, repositories, users, issues, pull requests

Codacy BadgePRs Welcome

This repo relies on submodules. To clone it properly, run:

image

FXBot is just what you guessed- a Forex trading bot! It's been developed in Python, enabled by the OANDA V20 API.

This trading bot allows users to backtest and analyze their favourite strategies executed on the most popular currency pairs, while also enabling users to dive straight into trading these forex pairs in real-time, through algorithmic live trading.

As we all know, algorithmic trading is the future of finance. When looking at the top trading firms in the world, all of them are making a shift towards automated trading, and are investing heavily in the space. The ones who don't automate, are at risk of falling behind their competitors!

That's what inspired me to make this bot, and to expose to the public how really anyone this day and age can jump headfirst into the algorithmic trading world.

Disclaimer

Before downloading and using this bot, please make sure to understand the following:

Through OANDA, you do NOT need to trade real money, and the same is true with respect to using this bot. OANDA offers practice accounts, which this bot is highly recommended to utilize.

If you do decide to trade real money, this disclaimer is for you.

Understand the Risk

Trading Forex involves a risk of loss. Please consider carefully if such trading is appropriate for you. Past performance is not indicative of future results. FXBot has been created solely for educational purposes only and its calculations do not constitute investment recommendations or advice, and it is strongly recommended that you use this bot as a learning tool.

If you are to trade using this bot, understand that algorithmic trading involves a high level of risk and is not appropriate for everyone. No guarantee is being made that by using this bot, the algorithmic trading strategies will result in profitable trading or be free of risk of loss. There is a possibility that you could lose some or all of your investment.

What FXBot Can Do For You

When you first run FXBot, you will be prompted to enter the following:

  1. The currency pair you would like to analyze/trade
  2. Whether to conduct backtesting or live trading on said currency pair

image

Backtesting

Backtesting is a method for seeing how well a strategy would have performed on historical data. This powerful technique can gather a lot of important information about the strategy- such as when is the best time for the strategy to operate, which currency pairs it should execute on, and much more. If the strategy performs well during backtesting, then individuals can look into putting the strategy into a production environment and try to beat the market.

FXBot enables users to backtest their strategies, alongside giving flexibility and customization surrounding the parameters passed to the backtester.

When running the backtesting section of the bot, users will be prompted to specify the following:

  1. The strategy to backtest
  2. The date range the backtest should occur over
  3. Whether the strategy should consider trading costs
  4. The granularity for the backtest session (IE how often should the bot analyze the data and consider positions)?
  5. Values unique to the strategy (if these values are with respect to time, such as moving averages, the time unit is the same as your specified granularity)

Note: For Backtesting, here are the accepted granularity values you can choose from. You must enter a choice from this list. For live trading, please follow the on screen prompts to enter something along the lines of "1hr" or "30s". image

image

After entering this, the bot will go ahead and conduct the backtesting.

Not only will it test the user's specified parameter choices onto the currency pair, but the bot will also find the most optimal parameter values for that time period that allows for the highest ROI. This optimization gives critical information that can be further analyzed by the user to find the best values for their trading situation.

Finally, the bot will plot the results so that the user can tangibly see the performance of the strategy.

Live Trading

Once you believe you have found a good strategy and have optimized its unique parameters, you can jump into live trading.

Live trading is exactly how it sounds, it utilizes algorithmic, event-driven trading that allows the user to execute the strategy on data as it happens in real-time. This is where you can realize the full potential of your strategy and see how it performs against the market.

When running the live trading section of the bot, users will be prompted to specify the following:

  1. The strategy to backtest
  2. The date range the backtest should occur over
  3. The granularity for the trading session (IE how often should the bot analyze the data and consider positions)?
  4. The number of units to trade with (IE the size you want your positions to be)
  5. OPTIONAL: A "stop profit" to halt trading if you reach
  6. OPTIONAL: A "stop-loss" to halt trading if you go below
  7. Values unique to the strategy (if these values are with respect to time, such as moving averages, the time unit is the same as your specified granularity)

image

Once the bot is set up and ready to trade, the trading stream will open. For the duration of the session, the console will continuously output each "tick" of data that is being streamed back to the bot, which contains the time of the tick, the bid price, and the ask price.

Every "granularity", the bot will analyze the current market and determine if it should open, close, modify, or hold a position, which is based on the underlying strategy.

image

If any of the stop thresholds have been crossed, or if the user terminates the session, the bot will automatically exit all of its current positions, and the console will default back to the start, where the user can start over.

image

Current Strategies

How to Setup FXBot

You can start off by cloning the repo by running

Requirements

First, you need to have at least a practice account with Oanda (eunic-brussels.eu). Once logged in, you must create an API token and copy your account number.

API Token

image

This green button will say "Generate". Click it, and copy the API Token. image

Navigate back to your account, so you can get your account number. image

Account Number

Click "Add Account". image

Make an account. Make sure to select 'v20 fxTrade'image

Once you have made an account, grab your account number. image

Now that you have an OANDA account and these values, you'll need to store them for the bot to use.

These values need to be put into a configuration file, with the name , as follows:

(You can make it a .txt file first, type the data, and then rename the file to .cfg)

Place the eunic-brussels.eu file into the same directory as the eunic-brussels.eu file in the cloned repository folder.

After cloning the repo, run to get the required packages.

Running the application

After installing the requirements, open a command prompt and you can start up the program by typing (python3 on Linux, if applicable) while in its directory.

Thats all! I hope that this bot helps you to see how awesome algorithmic trading can be.

If you need any help setting things up, feel free to email me at [email protected]

Have a good one!

nest...

аналитика форекс gbp кaртa мирa форекс вспомогательные индикаторы форекс как платят налоги трейдеры валютного рынка форекс лучшие индикаторы для входа индикаторы измерения температуры щитовые дмитрий котенко форекс клипaрт для форекс имхо на форексе дц форекс брокер отзывы безрисковая комбинация форекс индикаторы рынка ферросплавов