Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

EasyTrader_I
Members-
Content Count
72 -
Joined
-
Last visited
Personal Information
-
First Name
TradersLaboratory.com
-
Last Name
User
-
Country
India
Trading Information
-
Vendor
Coach
-
Favorite Markets
Futures
-
Dear Frenchnewbie, I don't know whether that's the common word that you use with your brothers, as you people really get confuse when someone asks what's your father's name? and it's common there. But please mind your words when you write something in public.... I am extremely sorry for not replying to your last post, I am basically a tradestation programmer, and I thought I could help. But I didn't understand the above code 100%, which is why I didn't do. I apologize for not replying to your question. If you are really not a __________ then you have to apologize for using such a word. I didn't use TLaboratory for a very long time... Good luck with your future. Arun.
-
EasyTrader_I started following Buy/Sell Data2, How to Enter Current Bar on Market Backtesting, Trading Strategies and and 7 others
-
How to Enter Current Bar on Market Backtesting
EasyTrader_I replied to rajatheroyal's topic in TradeStation
Hi rajatheroyal, Buy ("LE") next bar at High Stop; The Buy Order is placed at the High, and if the price next bar hits the High then it will take entry. Let me know if that helps. TSDevNYC -
Hi, I am preparing for my CMT Level1 exams. I have created a small web application, with lots of Questions from the Technical Analysis Level 1 book. I will be adding more and more questions in the coming days.Those who are interested can SignUp and take exams for free. This is a new site and I am working on in continuously to improve it and hope to reach most of the TRADERS who wants to gain knowledge. So suggestions to improve the site will encourage me. Also I have non-Technical Questions for those who are preparing for other Exams. Here is the link:- http://quizzcomp.in/kickstart.aspx. Mail Id:- quizzcomp@gmail.com Looking forward to see your feedback and suggestions. Thanks a Lot.
- 2 replies
-
- futures strategies
- strategies
-
(and 1 more)
Tagged with:
-
Hi All, For the last Ten years I have been programming, I specialize working with Easylanguage. I have a very comprehensive knowledge of the TradeStation platform. I charge a very competitive rate of $30 per hour. I greatly look forward to working with you to help achieve your goals in the financial markets. I also have some strategies for Futures(@GC, @SI, @CL, @US, @Y and @FDAX). If you are interested , I can send you the performance reports. My mail id is :- easylanguage.india@gmail.com Skype id :- tradestation_programmer Thanks, Easytrader_i
- 2 replies
-
- futures strategies
- strategies
-
(and 1 more)
Tagged with:
-
Hi Frenchnewbie, I can translate the TOS to tradestation. Please do PM with the code. Thanks, Arun.
-
Hi Pittrader, Var: Rng(0); Rng = range; If Rng >= (Rng[1] + Rng[2]) then Plotpb(High, Low, "Rng", Yellow);
-
Hi Pittrader, Var:MA(0); MA = Average(Close,21); Plot1[1] (MA, "MA"). Regards, Easytrader_i.
-
Hi Jacare, here we go.. Var: AvgVVol(0); AvgVVol = AverageFC( Volume, 5 ) ; if AvgVVol > 100000 then plot1(0) else noplot(1); cheers.
- 3 replies
-
- easylanguage
- greater than
-
(and 2 more)
Tagged with:
-
HI, You can achieve this by using PlaceorderMacro Function.
- 2 replies
-
- buy data2
- multiple data
-
(and 1 more)
Tagged with:
-
Hi einja, The first Buy signal would have taken at the very begining of the chart, Since there is No exit or reversal Orders, you cannot expect further Orders. Try placing an exit Order. For Example [HIGHLIGHT ORANGE][/HIGHLIGHT ORANGE]Setstoploss(1000) Good Luck.
-
Hi Pitrader, Input: Price(Close), Lenght(9), Displace(3); variables: double HullAvg( 0 ) , double NewAvg( 0) ; HullAvg = HMA( Price, Length ) ; NewAvg = Average(HullAvg, Length); Plot1[Displace] (NewAvg, "NewAvg"); Cheers.
-
Tradestation Indicator Not Working in Scan
EasyTrader_I replied to makkonmak's topic in TradeStation
Hi, Have you tried setting up the "Max Load bars" ? It's in the Format your Indicator in the scanner. -
Translate Indicator from Mql4 to EasyLanguage
EasyTrader_I replied to FxHulk's topic in Coding Forum
Hi, "High[1] and High of 1 bar ago" both are same. they both return previous bars High. Thanks, Easytrader_I. -
Translate Indicator from Mql4 to EasyLanguage
EasyTrader_I replied to FxHulk's topic in Coding Forum
Hi, Tradestation is different from MT4 in calculation. Tradestation calculates from left to right and thus the first bar will be 1 and then goes on.. if countedBars >= 0 then begin if countedBars > 0 then CountedBars=CountedBars-1; 1) In the first bar of calculation the countedBars is set to 0. So in your case, the countedBars will never be > 0. 2) In the for Loop, you have stated that Counter = 1 to to Counter<=0 where Counter is set as Counter(BackPeriod) in the variable. So I guess it should be like the following:- for X = Counter downto 0 begin //your code here Good Luck Easytrader_I. -
Hi LiuKK, Have you checked the Pyramiding Check Box ? in the Format strategies--> Properties for All--> General--> Allow upto [ ] ??? Good Luck, EasyTrader_I.