NexusFi: Find Your Edge


Home Menu

 





stop trading for minutes after NumberWins


Discussion in EasyLanguage Programming

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




 
Search this Thread

stop trading for minutes after NumberWins

  #1 (permalink)
binthere
houston, tx
 
Posts: 2 since Jul 2010
Thanks Given: 1
Thanks Received: 0

hi guys,
using tradestation 8.8
I'm looking for a way to have my strategy stop trading for "x" amount of minutes after
"y" number of winning trades or
"z" number of loosing trades
thanks for your help!!
binthere

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Better Renko Gaps
The Elite Circle
Quantum physics & Trading dynamics
The Elite Circle
What broker to use for trading palladium futures
Commodities
 
  #3 (permalink)
Doctor Leo
St. Petersburg, Russia
 
Posts: 30 since Nov 2010
Thanks Given: 6
Thanks Received: 19


 
Code
input: nWinTrades(5), nLosingTrades(10), nMinutes(10);

var: mp(0), wt(0), lt(0), reftime(0), trade_allowed(false);

mp = marketposition;

if positionProfit(1) > 0 then wt += 1;
if positionProfit(1) < 0 then lt += 1;

if mp <> mp[1] and (wt >= nWinTrades or lt >= nLosingTrades) then begin
	lt = 0;
	wt = 0;
	reftime = time;
	trade_allowed = false;
end;

if time - reftime >= nMinutes then trade_allowed = true;

if trade_allowed then
	…
	<your signal code goes here>
	…
end;
This stops trading for 10 minutes when number of winning trades is equal or greater than 5 or number of losing trades is equal or greater than 10.

Hope this helps.

Reply With Quote
Thanked by:




Last Updated on December 26, 2010


© 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