Category: MetaTrader 4 (MT4)

Forex Software

Task

Forex Software that can automatically copy trades from my telegram channel

 

Creating an MT4 platform Expert Advisor (EA) Strastegy with management system.

looking to develop an EA on MT4
I need Entries and Exists,
Stop loss and take profit, Draw Down…
Money management System two (Alembex management system and Martingale management system option.
Drawings on chart and Notification Email and pop up.
Details of EA in the attachment
Please disregard the price mentioned below,
A fixed prices for this project will be agreed on with the programmer who will be providing a competitive quotation.

Attachments

EA Details

Alembex System Q&A

DEVELOPER/PROGRAMMER needed Complicated EA or indicator “SIGNAL ALERT” for STOCKS OPTIONS TRADING

I need to build a complicated EA or indicator “SIGNAL ALERT” for STOCKS OPTIONS TRADING (not forex, not binary, not MT4). I use ThinkorSwim, but we would need some MARKET DATA API service. Searching on the web I found this explanatory video on how to scan for Unusual Volume using Market Chameleon. https://youtu.be/PCWD89bq7Cw

Then I learned on SWEEP OPTIONS and the tell, “Aggressiveness” when the buyer is willing to pay near or at the ask price. I found that Bezinga Pro has a great tool for this. https://youtu.be/-WfrYa7ESQo
After watching this Unusual Options Scanner, I need something similar to  this: https://neuromastersoftware.com/optionscanner_special/special_offer.html but it seems it provides last trading day activities, not live.

We would need to optimize or automate my Options trade preference, So I would like an ALERT SIGNAL with the following criteria:
• Order Type
• Expiration
• Bid, near Ask, or Ask Price
• IN % Rank
• IV30
• Volume Level
• Volume vs. Open Interest
• Relative Opt. Volume
• 1 Day Volatility

Check this API services:
https://www.xignite.com/product/global-real-time-option-price-data#/productoverview

https://datashop.cboe.com/web-api

https://product.intrinio.com/financial-data/opra-realtime-options-prices

http://www.iqfeed.net/index.cfm?displayaction=data&section=services

http://www.nanex.net/2019/

https://www.orats.com/options-data-products/

https://cloud.benzinga.com/

https://developer.tdameritrade.com/apis

 

Attachment

STOCKS OPTION TRADING EA

Mt4 EA needed to open and close trades by day of week and time, not price.

Would like to have an MT4 EA that can open and close trades on the basis of time and day of the week.

For instance, “open long Monday 01:30  close Wednesday 13:00, open short, Wednesday 13:00, close trade Friday 09:00″… I would be able to input how many lots… I found this bit of code that might work:

enum daysOfWeek {Monday,Tuesday,Wednesday,Thursday,Friday};
extern daysOfWeek dayOfWeek1=Monday;   extern string timeSlot1=”00:00-00:00″;
extern daysOfWeek dayOfWeek2=Tuesday;  extern string timeSlot2=”00:00-00:00″;
extern daysOfWeek dayOfWeek3=Wednesday;extern string timeSlot3=”00:00-00:00″;
extern daysOfWeek dayOfWeek4=Thursday; extern string timeSlot4=”00:00-00:00″;
extern daysOfWeek dayOfWeek5=Friday;   extern string timeSlot5=”00:00-00:00”;

int OnInit(){
dayOfWeek1 +=1;dayOfWeek2 +=1;dayOfWeek3 +=1;dayOfWeek4 +=1;dayOfWeek5

if ((!isSlotOK(1,timeSlot1)) || (!isSlotOK(2,timeSlot2)) || (!isSlotOK(3,timeSlot3)) || (!isSlotOK(4,timeSlot4)) || (!isSlotOK(5,timeSlot5)) ||

return (INIT_PARAMETERS_INCORRECT);

return(INIT_SUCCEEDED);

Can you help?  My hope is that this would be a small job.