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.

Tams

Market Wizard
  • Content Count

    4075
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tams

  1. I would like to smoke whatever you are smoking LOL
  2. which kettle is black? note: black is not the politically correct adjective anymore.
  3. I don't see any scalpers using it.
  4. I don't see any pro using it.
  5. can you see a tab for "Contract Specifications"?
  6. what pages have you checked? Cheers
  7. without a mindset, there will be no method.
  8. I am glad you know what you know. Like I said, I am glad you can do what you can do.
  9. I think you have confused "complicated system" with the ability of a programming language. but I am glad you can do what you can do.
  10. the OP wants to use C#, thus Ninja was suggested. TS can do a lot too, but EasyLanguage is not as powerful and flexible as C#.
  11. no amount of risk management skill can make a bad trade good. 100% of bad trades begin with a bad entry. 100% of good trades that went bad begin with a bad exit. 100% of bad exits begin with bad risk management. YMMV
  12. the problem is, people are celebrating the "incorrect" wins.
  13. easy... go to EOTPro and buy their indicator.
  14. many have sent a letter too. I am sure SEC receives thousands of letters every month on this subject. There is no need to rationalize whether trading options or futures is riskier. My advice is... save up $25k before you start, so you don't have to be aggravated by this rule. If it is too difficult for you to save up $25k, you will be shocked to find out it is even more difficult to turn $24k into $25k in the market.
  15. if you have to ask these questions, you shouldn't be attempting it. you are not in the league.
  16. "You know you have achieved perfection in design, not when you have nothing more to add, but when you have nothing more to take away." -Antoine de St. Exupery
  17. what do you mean by "backtestet all system from 2003 to now."? how many iterations did you do? did you keep a record? can you post them so that we can analyze them? why did you test 1 min? did you try resolutions other than 1 min? what do you mean by "without any good results"? if the testing was bad, how did you lose money?
  18. you sound familiar... have you asked this question before? take a look at Ninjatrader. (free download) all the things you mentioned is already done... no use re-inventing the wheel. you should focus on the trading logic, not housekeeping.
  19. note: // <-- add this line var: Peak1(False); Peak1 = C[1]>O[1] AND Close<O; Variable: ID(-1); If Peak1 Then Begin TL_SetExtRight( ID[1] , FALSE); // <-- add this line ID = TL_New(Date[1], Time[1], H[1], Date, Time, H[1]); Value1 = TL_SetExtRight(ID, True); End;
  20. note correction on Ht var: Peak(False),NoPriorPk(False); var: ClsDwn(False),ClsUp(False); var: ht(H); ClsDwn=c<o; ClsUp=c>o; Peak=ClsUp[1] and ClsDwn; NoPriorPk=Peak[1] = false; if Peak and NoPriorPk then ht= H[1]; {-- restarts the trendline if a new peak signal fired ---} var: HiTrget(-1); if Peak then Begin HiTrget = tl_new(d, t, Ht, d, t, Ht); // <--- note correction on Ht end; {--- extends the trendline from PEAK to current bar ---} tl_setend(HiTrget, d, t, ht); // <--- note correction on Ht // To test for a PEAK signal. Set format to POINTS. {If Peak and NoPriorPk then plot30(l,"Test",Black,5) else NoPlot(30);} chart from above code:
  21. What is your chart resolution? With Tradestation, you can only use minute chart or higher resolutions. ie no tick chart or any non-time based charts. With MultiCharts, you can draw on any chart format.
  22. the first question I would ask is... are you using any method or system to trade? if yes, the next question is... do you have the method written on paper? final question: are you executing according to the rules of the method? both during sim and trading live? My suggestion: don't answer my questions here. start a new thread with your problem as topic.
  23. if you are serious about trading options, you can check out OptionVue. It is an expensive software, plus monthly subscription fee. but it can analyze option price behavior like a rocket scientist.
  24. read my lips... you have to learn to trade first. how can I help you if you don't want to listen? there are a number of good threads on this forum. start by reading them carefully. don't rush... it takes years to make a good doctor, a capable lawyer, it will also take years to make a good trader. ps. don't tell me how much money you have lost. don't care, none of my business, nothing I can do about it. if losing money hurts your feeling, my advice is to stop trading now and in the future.
×
×
  • Create New...

Important Information

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