Trading Articles
Article Categories
Article Tools
How to program an EMA fade entry strategy?
Updated February 20, 2021
trending_up
3,567 views
thumb_up
1 thanks given
group
2 followers
forum
4 posts
attach_file
0 attachments
Welcome to futures io: the largest futures trading community on the planet, with well over 150,000 members
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to
register in order to view the content of the threads and start contributing to our community.
It's free and simple.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
How to program an EMA fade entry strategy?
(login for full post details)
#1 (permalink )
Fleming Island
Posts: 6 since Jul 2019
Thanks: 2 given,
0
received
EMA fade entry question:
Spent many hours this past week searching for EasyLanguage example on how to create an entry/fade off an EMA. Not a crossover entry, but rather limit order 1 tick above or below the EMA when price returns to the EMA from above or below.
I am trading futures and have limited programming experience.
Any help is truly appreciated in advance...
Thanks,
EM
Can you help answer these questions from other members on futures io?
Best Threads (Most Thanked) in the last 7 days on futures io
(login for full post details)
#2 (permalink )
Seattle, WA/USA
Experience: Intermediate
Platform: TOS, TS
Trading: Forex, crude
Posts: 95 since Sep 2016
Thanks: 7 given,
35
received
ernmen
EMA
fade entry question:
Spent many hours this past week searching for
EasyLanguage example on how to create an entry/fade off an EMA. Not a crossover entry, but rather
limit order 1 tick above or below the EMA when price returns to the EMA from above or below.
I am trading futures and have limited programming experience.
Any help is truly appreciated in advance...
Thanks,
EM
Without more specifics I can't help more than saying define your entry price and use a buy limit order.
Code
input: length(20);
value1 = xaverage(close, length) + minmove * 1 points;
if marketposition <> 1 then buy n contracts next bar at value1 limit;
The following user says Thank You to kjhosken for this post:
(login for full post details)
#3 (permalink )
Fleming Island
Posts: 6 since Jul 2019
Thanks: 2 given,
0
received
kjhosken
Without more specifics I can't help more than saying define your entry price and use a buy
limit order .
Code
input: length(20);
value1 = xaverage(close, length) + minmove * 1 points;
if marketposition <> 1 then buy n contracts next bar at value1 limit;
This is great - thanks!
(login for full post details)
#4 (permalink )
San Francisco CA USA
Posts: 6 since Jul 2020
Thanks: 1 given,
3
received
ernmen
EMA
fade entry question:
Spent many hours this past week searching for
EasyLanguage example on how to create an entry/fade off an EMA. Not a crossover entry, but rather
limit order 1 tick above or below the EMA when price returns to the EMA from above or below.
I am trading futures and have limited programming experience.
Any help is truly appreciated in advance...
Thanks,
EM
Are you on TS or MC?
(login for full post details)
#5 (permalink )
Fleming Island
Posts: 6 since Jul 2019
Thanks: 2 given,
0
received
kjhosken
Without more specifics I can't help more than saying define your entry price and use a buy
limit order .
Code
input: length(20);
value1 = xaverage(close, length) + minmove * 1 points;
if marketposition <> 1 then buy n contracts next bar at value1 limit;
James11
I am using TS
Last Updated on February 20, 2021
Ongoing