Recent content by ManiGandan

  1. M

    EasyLanguage Code Question

    Hi Have never used the DLL in my above code.. Mani.
  2. M

    EasyLanguage Code Question

    Hi Surfcat, Try using the following code Var: MP(0), LL(0), HH(0); MP = Marketposition; if MP <> 0 and MP[1] = 0 then begin LL = Lowest(Low, 10); HH = Highest(High, 10); end; If marketposition = 1 then Sell next bar at LL Stop; If marketposition = -1 then BuyToCover next bar at HH...
  3. M

    Entry by Easy Language / Exit by Setting

    Hi Maggie, Not from the Platform I guess, but you can easily achieve this through your broker, asking them to squareoff the Positions if any at this particular time. The new orders will not be triggered, Unless the Tradestation is ON. Good Luck, Manigandan.
  4. M

    Tradestation 8 coding help

    Great!!! Manigandan.
  5. M

    Tradestation 8 coding help

    Hi Pecas, No Need, Tradestation has its own Globalvariables.dll and its functions that can be used in Tradestation Easylanguage which was created by Tradestation users. Thanks, Manigandan.
  6. M

    Tradestation 8 coding help

    Hi Pecas, You can use Globalvariables to send information from one chart to another chart.. Post a PM to me if you have any difficulties... Manigandan.
  7. M

    Tradestation coding

    Hi Hedward, small correction... If time >= 830 and time < 1500 then begin Your code here End; Manigandan.
  8. M

    Get syntax error, expecting 'bars'. Need your help!

    HI jackyang1 The below code should work... inputs: Displace( 0 ) ; variables: HL( 0 ), Sew_O( 0 ), Sew_H( 0 ), Sew_L( 0 ), Sew_OHLC( 0 ), Sew_Next_O( 0 ); condition1 = Displace >= 0 or CurrentBar > AbsValue( Displace ) ; if condition1 then begin HL = ( High + Low ) /2; if Sew_O[1] >0 and...
  9. M

    SMA200 up for down trend for easylanguage

    Hi, Yes, That should give you the uptrend and dnTrend of 200SMA.... GoodLuck,
  10. M

    historical intraday tradestation

    Hi, Format Symbol, and make sure that you have the correct from date...
  11. M

    So close! Can anyone help

    Hi , Yeah, you need the Plots to be replaced by Buy and Sell . Plot1 = Buy this bar at Close;(Buy Next bar at Open) Plot2 = Sell this bar at Close;(Sell Next bar at Open); Good Luck.
  12. M

    So close! Can anyone help

    HI Friend, here is the code for you.. inputs: TradeDay ( 7 ); var: tradeday.count(0); Value1 = Close; If Month(Date) <> Month(Date[1]) then tradeday.count = 0; if d > d[1] then tradeday.count = tradeday.count + 1; If DayOfMonth(date) = LastDayOfMonth(month(date)) then Plot1(Value1)...
  13. M

    Technical Help!!!

    You are welcome:)
  14. M

    Technical Help!!!

    You can do it this way also:- Var: flag(0), i(0); flag = 0; for i = 0 to 9 begin if o[i] > c[i] then flag = flag+1; end; if flag = 10 then {your condition} if flag <> 10 then {your condition} Good Luck..
  15. M

    Is it data replay for Tradestation still not possible?

    HI ipoppy, It is possible .....It's not a functionality of Tradestation though.... Cheers.
Top