Jump to content

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

    75
  • Joined

  • Last visited

Everything posted by EasyTrader_I

  1. Hi DesertRose, Welcome to the Trading World using Technical Indicators. As you said there are many.. Its all about how you use it. All the Indicators has worth. It's all about research using that indicator and finding its value. But for sure, the Indicators will give you an idea where you can start building your own.. Good Luck in Trading EasyTrader_I.
  2. HI Jrp,

     

    I came to know that you are looking for a Easylanguage Programmer through the forum. For the last seven 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.

     

     

    My skype id is tradestation_programmer.

     

    Kindest Regards

    EasyTrader_I

  3. Hi aaa, Yes you can Read/Write the Texts from/to the file via ADE. EasyTrader_I
  4. HI, if Condition1 then Alert( "Your Text" ) ; Post your indicator code within the code Box, so that it will be easy for us to help you.. Good Luck, EasyTrader_I
  5. http://www.traders2traders.com/code...onHistogram.htm Thought that this will help you a bit.. EasyTrader_I
  6. Hi Petey, Have a Look on Price Distribution Activity bar, You may get a clue. EasyTrader_I.
  7. HI, The SetProfitTarget (Amount of profit in dollars, at which point the position will be closed) and SetStopLoss(Amount of loss, in dollars, at which point the position will be closed) will close the Position immediately. If you want your Positions to be closed 1 tick Higher , then You need to rewrite your exits. Another Option is:- You can add the dollar value of 1 tick with the Profit. I.e SetProfitTarget(2000 + 12.5) where 12.5 is the 1 Tick value of The selected Stock. This will exit at the Next Tick after reaching the Profit of 2000. GoodLuck EasyTrader_I
  8. HI, Price[X] Refers to Price X bars ago. EasyTrader_I
  9. Hi,

    Please post the request via PM..I will let you know the cost and time..

     

    EasyTrader_I.

  10. HI, I am sorry, But didn't got any mails from you... Please drop a mail now and I will reply... Thanks, EasyTrader_I
  11. Hi, You can find him in .. easylanguage.india@gmail.com tradestation_Programmer in skype Easytrader_I.
  12. Hi, Since indicators can't use EntryPrice and strategies can't use Plotx, how can I either know if the position is long or short, Have you tried I_MarketPosition and I_AvgEntryPrice in Indicators.? EasyTrader_I.
  13. HI Antani, I don't use Metastock, As far as I Understood here is the code for Tradestation... Input: StaDate(1090101), H1(1), {"Shift"} WA2(3),{"N Cycle"} wavelength(16){"Length Cycle"}; {bars} Var: X(0), w1(0), w2(0), w3(0), w4(0), phase(0), Daycount(0); If Date >= StaDate then Daycount = DayCount + 1; {x axis values} x = 360/wavelength * (Daycount); {sine waves} phase = -90; w1 = Sine(8*x+phase); w2 = 2*Sine(4*x+phase); w3 = wa2*Sine(2*x+phase); w4 = 4*Sine(x+phase); Plot1(w1,"w1"); Plot2(w2,"w2"); Plot3(w3,"w3"); Plot4(w4,"w4"); Please Let us know if that Looks alike as in Metastock. EasyTrader_I.
  14. Hi, Sorry, I am not Good in either of the software...Hope someone will help you.. Good Luck.
  15. Hi, I hope Most of the Softwares should have a facility to get that done, by one or another way.. Let me know what platform you are using? EasyTrader_I.
  16. HI, Do You mean Ichimoku? If Yes, then Inputs: Standard(26), Turning(9), Delayed(52); EasyTrader_I
  17. Hi, If you are a Tradestation User, then you use the scanner to list out the stocks that are UP or DOWN for X number of Days.. EasyTrader_I.
  18. Hi Jock, Here is the Txt file attached.. Good Luck.. EasyTrader_I. pattern detector.txt
  19. Hi , You can get the manual by Google. Hope this will help you, http://www.stockwell.ru/html/downloads/UsersGuide.pdf EasyTrader_I
  20. Hi, Are you trying to count the No of Ticks from the day start to current Tick? Hope you know that the ticks occurs in Nano seconds..Will try and post if I can get it working.. Regards, EasyTrader
  21. Hi, May I know which platform you are using? EasyTrader_I.
  22. HI, Hope this will be useful.. https://www.tradestation.com/Discussions/Topic.aspx?Topic_ID=25132&SearchTerm=OHLCSess&txtExactMatch= EasyTrader_I OHLCSESSIONSAGOFUNCTIONS.ELD
  23. variables: SessOpen(0), SessHigh( 0 ), SessLow( 0 ); Condition1 = currentsession(0) <> currentsession(0)[1]; if Condition1 then begin SessOpen = Open; SessHigh = High ; SessLow = Low ; end; if condition1 = false then begin if High > SessHigh then SessHigh = High ; if Low < SessLow then SessLow = Low ; end ; Print(D,T, SessOpen, SessHigh, SessLow);
  24. Yes, I can.. Post your code here or PM to me.. Easytrader_I
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.