NexusFi: Find Your Edge


Home Menu

 





EMA+ConfirmBars


Discussion in EasyLanguage Programming

Updated
    1. trending_up 3,749 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 3 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
tradestation18
Porto Portugal
 
Posts: 16 since May 2018
Thanks Given: 1
Thanks Received: 1

I have the following code:

if Price > XAverage( Price, Length ) then
Counter = Counter + 1 else Counter = 0;
if CurrentBar > ConfirmBars and Counter = ConfirmBars then
Buy ( !( "EMACrossLE" ) ) next bar at market;

But the problem is that even if ConfirmBars=0 and Price > XAverage, the code doesnt trigger the Buy Order. It only triggers if the market crosses under and over the XAverage..(?).
It was supposed to trigger the order once the two conditions were filled: Price>XAverage and Counter=ConfirmBars , but it only triggers if Price crosses up the XAverage.


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Iran Update May 8: Still Reviewing MOU, Demands Reparati …
Traders Hideout
ATFX Suspends Prop Trading Unit ATFunded -- Full Review …
Funded Trading Evaluation Firms
Election Sunday Resolves: Peru Heads to Runoff at 42pct, …
Prediction Markets & Event Contracts
Powell in 48 Hours: Word Markets Give 78% on Inflation, …
Prediction Markets & Event Contracts
UMA Votes Tonight: Polymarkets $80M Strategy Bitcoin Bat …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
196 thanks
Sober Journey With S&P
27 thanks
30 Sessions
20 thanks
BERN ALGOS algo trading journal
8 thanks
Volume Indicators
8 thanks
  #2 (permalink)
Kolnidrei
Lyon/France
 
Posts: 23 since Aug 2012
Thanks Given: 1
Thanks Received: 14

first of all it would be useful to see the code completely,
I suppose Price, Length and ConfirmBars are inputs and counter is a variable.
In this case setting ConfirmBars to 0 should never trigger the buy signal,
it should be set to 1 as minimum...


Reply With Quote
  #3 (permalink)
 kjhosken 
Seattle, WA/USA
 
Experience: Intermediate
Platform: TOS, TS
Trading: Forex, crude
Posts: 96 since Sep 2016
Thanks Given: 7
Thanks Received: 35


If you set confirm bars to 0, then yes this script will buy when price crosses under, because that is when the counter gets reset to 0.

tradestation18 View Post
I have the following code:

if Price > XAverage( Price, Length ) then
Counter = Counter + 1 else Counter = 0;
if CurrentBar > ConfirmBars and Counter = ConfirmBars then
Buy ( !( "EMACrossLE" ) ) next bar at market;

But the problem is that even if ConfirmBars=0 and Price > XAverage, the code doesnt trigger the Buy Order. It only triggers if the market crosses under and over the XAverage..(?).
It was supposed to trigger the order once the two conditions were filled: Price>XAverage and Counter=ConfirmBars , but it only triggers if Price crosses up the XAverage.


Follow me on X Reply With Quote
  #4 (permalink)
tradestation18
Porto Portugal
 
Posts: 16 since May 2018
Thanks Given: 1
Thanks Received: 1

I believe I found the problem. I just add "=" to the condition if CurrentBar >= ConfirmBars, and now it works accordingly:

if Price > XAverage( Price, Length ) then
Counter = Counter + 1 else Counter = 0;
if CurrentBar >= ConfirmBars and Counter = ConfirmBars then
Buy ( !( "EMACrossLE" ) ) next bar at market;


Reply With Quote




Last Updated on May 24, 2021


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts