MetaTrader 5 Python User Group - как использовать Python в Метатрейдере - страница 61
Вы упускаете торговые возможности:
- Бесплатные приложения для трейдинга
- 8 000+ сигналов для копирования
- Экономические новости для анализа финансовых рынков
Регистрация
Вход
Вы принимаете политику сайта и условия использования
Если у вас нет учетной записи, зарегистрируйтесь
Failed to install
Win10, Py3.6.10 and WinPy3.7.7.
Try it again. I had to refactor it to work with Python < 3.8
Try it again. I had to refactor it to work with Python < 3.8
Ok
Что нового в релизе?
Удачи
Ok
What's new in the release?
Good luck
calendar_events https://github.com/nicholishen/pymt5adapter/blob/master/pymt5adapter/calendar.py
Добрый день! Как работать с TRADE_ACTION_CLOSE_BY ??? или кто и как закрывает все открытые позиции?
Добрый день! Как работать с TRADE_ACTION_CLOSE_BY ??? или кто и как закрывает все открытые позиции?
С использованием Python?
calendar_events https://github.com/nicholishen/pymt5adapter/blob/master/pymt5adapter/calendar.py
Эту строку VS2019(WinPy3.7.7) ругает (подчеркнуто):
"unexpected token 'function' "
unexpected token ':"
unexpected token '='
invalid syntax
employment_events_next_month = calendar_events( currencies=Currency.USD, importance=Importance.HIGH function=lambda e: 'employment' in (name :=e['event_name'].lower()) or 'payroll' in name )
Эту строку VS2019(WinPy3.7.7) ругает (подчеркнуто):
"unexpected token 'function' "
unexpected token ':"
unexpected token '='
invalid syntax
That's the new assignment expression for python >=3.8, and they're awesome. I had to remove all those from the library to make it work with your version, but I think you can refactor that example script to make it work. You should consider upgrading your python interpreter to the latest version. :)
https://www.python.org/dev/peps/pep-0572/
That's the new assignment expression for python >=3.8, and they're awesome. I had to remove all those from the library to make it work with your version, but I think you can refactor that example script to make it work. You should consider upgrading your python interpreter to the latest version. :)
https://www.python.org/dev/peps/pep-0572/
Не могу. Слишком много пакетов завязаны на 3.7.7 и 3.6.10.
Просто подскажите чем или как заменить, если возможно. Если нет, не проблема.
Я не знаток Питона. Мой язык R/
Удачи.
I can not. Too many packages are tied to 3.7.7 and 3.6.10.
Just tell me what or how to replace, if possible. If not, no problem.
I'm not a Python expert. My language is R /
Good luck.
С использованием Python?