NexusFi: Find Your Edge


Home Menu

 





Need help with initial balance


Discussion in EasyLanguage Programming

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




 
Search this Thread

Need help with initial balance

  #1 (permalink)
Dawson
Charleston West Virginia United states of America
 
Posts: 2 since Jan 2015
Thanks Given: 0
Thanks Received: 1

Hey traders,
I am new to easy language and I need some guidance. What I am trying to automate is pretty simple, but I cannot seem to do it in EL.

Here is pseudo code.
Variables:

Ibh = first 60 min bar high
Ibl = first 60 min bar low

Ibh30 = high + 0.30 * (high -low)

If last crosses under ibh
Buy at this bar
If last crosses under ibh30
Exit position

If last <= ibl
Sell at this bar
If last crosses above ibl30
Exit position

Any help is greatly appreciated. Or if this has been done on another post please link it.

Thank you for your help.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
How to apply profiles
Traders Hideout
Exit Strategy
NinjaTrader
Increase in trading performance by 75%
The Elite Circle
Better Renko Gaps
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
33 thanks
Tao te Trade: way of the WLD
24 thanks
My NQ Trading Journal
14 thanks
GFIs1 1 DAX trade per day journal
11 thanks
HumbleTraders next chapter
11 thanks
  #2 (permalink)
 
numberjuani's Avatar
 numberjuani 
Agoura Hills, CA USA
 
Experience: Advanced
Platform: Tradestation&Multicharts
Broker: TradeStation
Trading: Futures & Equities
Posts: 128 since Apr 2019
Thanks Given: 9
Thanks Received: 102


Dawson View Post
Hey traders,
I am new to easy language and I need some guidance. What I am trying to automate is pretty simple, but I cannot seem to do it in EL.

Here is pseudo code.
Variables:

Ibh = first 60 min bar high
Ibl = first 60 min bar low

Ibh30 = high + 0.30 * (high -low);

If last crosses under ibh
Buy at this bar
If last crosses under ibh30
Exit position

If last <= ibl
Sell at this bar
If last crosses above ibl30
Exit position Any help is greatly appreciated. Or if this has been done on another post please link it.
Thank you for your help.

first off, make sure whatever timeframe youre using has a candle that ends at 1030 (or whatever time zone youre in). ID recommend a 30 min chart. this code is for a 30 min chart
Variables:
IBH(0),
IBL(0);


if time = 1030 then begin
IBH = Highest(H, 1);
IBL = Lowest(L,1);
end;

if time >= 1030 and time < 1600 then begin
buy next bar at IBH Stop;
sellshort next bar at IBL stop;
end;

SetStopLoss(( (IBH -IBL)*1.3*BigPointValue));

Reply With Quote




Last Updated on August 27, 2019


© 2024 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 - Privacy Policy - Downloads - Top
no new posts