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.

email

Members
  • Content Count

    51
  • Joined

  • Last visited

Everything posted by email

  1. Hi Guys, When i made my comment about the TransAct feed it was out if disappointment because I was very comfortable with the feed, and did not have to go out and pay extra for it. What I am going to do is switch over to Interactive Brokers that's all, their feed will be just fine with Multi Charts. I have been using MC for a year, and before that Sierra charts for about four years with TransAct feed, and can say I never had problems with either of them. I went to MC because of some easylanguage indicators I had otherwise I would of never left Sierra. Actually, I just might get Sierra (because I miss their charts) on my other computer with TransAct feed, and IB on my other so I can have two feeds. Cheers, email
  2. pa18, Why not ask Barry (very nice guy) from emini watch what settings to use for forex, he uses forex charts himself and he programs ninja and TS. Also, he has a video on how to use the BV indicator for forex. cheers
  3. Well that sucks for me, do you know when they will cut the feed off. I heard that people were having issues with the feed but I thought that all was good now. I know that lately allot of platforms worked on getting the Transact feed to work with their software, did they waist their time. Look at Market Delta they put allot of effort to get Trans Act feed, they cannot be that stupid. Oh well, Cheers guys and all the best this week trading, email
  4. Tams, Done, and it works. Many thanks Sir.
  5. Hi Guys, I am not very good at all with paisting indicators in multicharts, can someone please tell me how to copy and past that code into multicharts or maybe post the indicator. Many thanks, email
  6. Hi Guys, They tell me that whom ever is using TransAct futures data will not be able to use this indicator. Cheers, Email
  7. Hi guys, Glad you started this thread; most of the big time traders I know of say that they get their levels from the Big S&P and Dow. Cheers, email
  8. Hi Guys, Hope everyone had a good weekend. I am still getting that Error message when I apply MD to the chart. Could it be the feed; I am using transAct futures for data feed, maybe something with that. Cheers, email
  9. Aaron, Congratulations and many returns to you my friend, finally someone that saw the light and took the time to do the smart thing. I am in similar transition myself. I cannot believe how many thousands of posts I see in forums I belong to of people crying about there Fx broker and how they are so frustrated. If everyone took all that energy and did what you did Aaron they would be mile ahead of the game in the long run. Many thanks for sharing experience, email
  10. Hi Nick, Could you please elaborate a bit on this because i`m sure allot of others here do not have access to the TS forums. Does that also apply to Multicharts. I am assuming no because the feed comes from various sources. Thanks
  11. Yes tams, good point about the markets being closed and no feed. Many thanks to you and ant. Have a great weekend.
  12. 5 Min. YMM9 It says: Threshold1 Value 150 Thresold2 Value 300 Thresold3 value 600 Displaydelta false Type 1 Bid Ask Array Sz 1000
  13. Tams, The compile was successfull, thats what it said. Even when i open the study list is show as compiled, before it did not. Could it be that I need to change the actual setting/inputs when the indi window pops up. cheers
  14. Hi Tams, Yes, I read that post but it flew over my head, I did not get it. I am starting to understand it a bit know. Please keep in mind that I do not know a thing about code. Ok, just noticed while trying to apply the indicator to the chart that I get a red box at the bottom of the chart and it says; "Message: Error in study "Market Delta": Array bounds. Wrong index value : 20500. What does that mean. Thanks again
  15. OK, OK got it I think, it just said complete. I`m too tirred to open the chart but it seems to be ok now. I did what you said and that was to change the "i" to an x but I missed one at first, I re did it and now seems to have compiled. Thank you Sir, Emil;e
  16. Hi ant, Yes I did what Tams said, and what happens when I compile it is that the error shifts to line 25. By the way, when I first imported the inid and then compiled it and then shows me the error the "i" is highlighted in blue. The I (i) must be the problem. Thanks
  17. Hi, I Hope I`m not being a pain in the back, he is the code if you can notice anything. inputs: Threshold1( 150 ), Threshold2( 300 ), Threshold3( 600 ), DisplayDelta( false ), Type( 1 ), // 1 = Use Upticks/Downticks, 2 = Use Bid/Ask BidAskArraySz( 1000 ); variables: TickSize( MinMove / PriceScale ), PriceAtIndex( Open ), BaseIndex( BidAskArraySz/2 ), Red1(RGB(255,185,185)), Red2(RGB(255,128,128)), Red3(RGB(255,0,0)), Red4(RGB(128,0,0)), Green1(RGB(210,255,210)), Green2(RGB(125,255,125)), Green3(RGB(0,255,0)), Green4(RGB(0,128,0)), i( 0 ); variables: intrabarpersist Price( 0 ), intrabarpersist MyVol( 0 ), intrabarpersist VolTmp( 0 ), intrabarpersist LastTick( 0 ), intrabarpersist MyCurrentBar( 0 ), intrabarpersist Index( 0 ), intrabarpersist BidAskDelta( 0 ), intrabarpersist xDelta( 0 ), intrabarpersist TextString(""), intrabarpersist MyUpTicks( 0 ), intrabarpersist MyDownTicks( 0 ); Arrays: intrabarpersist Bid[](0), intrabarpersist Ask[](0); Array_SetMaxIndex( Bid, BidAskArraySz ); Array_SetMaxIndex( Ask, BidAskArraySz ); if (Type = 1 or Type = 2) and LastBarOnChart and BarType < 2 then begin MyVol = Ticks; PriceAtIndex = Open; if CurrentBar > MyCurrentBar then begin VolTmp = 0; MyCurrentBar = CurrentBar; MyUpTicks = 0; MyDownTicks = 0; for i = 0 to BidAskArraySz - 1 begin Bid = 0; Ask = 0; end; end; Index = BaseIndex + (Close - PriceAtIndex) / TickSize; if InsideBid < InsideAsk then begin if Type = 1 then begin // Use Upticks/Downticks if DownTicks <> MyDownTicks then Bid[index] = Bid[index] + MyVol - VolTmp else if UpTicks <> MyUpTicks then Ask[index] = Ask[index] + MyVol - VolTmp else begin if Close <= LastTick then Bid[index] = Bid[index] + MyVol - VolTmp else Ask[index] = Ask[index] + MyVol - VolTmp; end; end else begin // Use Bid/Ask // Warning: TradeStation provides snapshot of bid/ask if Close <= InsideBid then Bid[index] = Bid[index] + MyVol - VolTmp else if Close >= InsideAsk then Ask[index] = Ask[index] + MyVol - VolTmp else begin // Last tick was between bid/ask if Close <= LastTick then Bid[index] = Bid[index] + MyVol - VolTmp else Ask[index] = Ask[index] + MyVol - VolTmp; end; end; end; MyUpTicks = UpTicks; MyDownTicks = DownTicks; VolTmp = MyVol; LastTick = Close; xDelta = 0; Price = Low; while Price <= High begin Index = BaseIndex + (Price - PriceAtIndex) / TickSize; TextString = NumToStr(Bid[index],0) + " x " + NumToStr(Ask[index],0); Value99 = Text_New(Date, Time, 0, " "); Text_SetString(Value99, TextString); Text_SetLocation(Value99, Date, Time, Price); Text_SetStyle(Value99, 1, 1); BidAskDelta = Ask[index] - Bid[index]; if BidAskDelta > Threshold3 then Text_SetColor(Value99, Green4) else if BidAskDelta > Threshold2 then Text_SetColor(Value99, Green3) else if BidAskDelta > Threshold1 then Text_SetColor(Value99, Green2) else if BidAskDelta >= 0 then Text_SetColor(Value99, Green1) else if BidAskDelta < -Threshold3 then Text_SetColor(Value99, Red4) else if BidAskDelta < -Threshold2 then Text_SetColor(Value99, Red3) else if BidAskDelta < -Threshold1 then Text_SetColor(Value99, Red2) else Text_SetColor(Value99, Red1); xDelta = xDelta + BidAskDelta; Price = Price + TickSize; end; if DisplayDelta = true then begin Value99 = Text_New(Date, Time, 0, " "); Text_SetString(Value99, NumToStr(xDelta, 0 )); Text_SetLocation(Value99, Date, Time, Low - TickSize); Text_SetStyle(Value99, 1, 1); if xDelta >= 0 then Text_SetColor(Value99, Green) else Text_SetColor(Value99, Red); end; end;
  18. Hi Ant/ Tams, I tried to place the brackets at line 23 but then the problem shifts to line 25. this is line 22 to line 26 : 22) Green4(RGB(0,128,0)), 23) i( 0 ); 24) nothing on this line variables: (25 26) intrabarpersist Price( 0 ), Thanks Again, email
  19. Hi Tams, Very Kind of you to a answer back, this is the message I am gettingis: 01.05.09 17:58:01 ------ Build started: ------ Study: "MarketDelta" (Indicator) Please wait .... ------ Compiled with error(s): ------ this word has already been defined errLine 23, errColumn 1, errLineEnd 23, errColumnEnd 2 Many Thanks, email
  20. Hi Guys, I have tired like heck to make it work in Multicharts but with my limited knowledge of code It will not work. If someone has the indicator that works on MC can they please help me out, would be very grateful. Many Regards
  21. email

    Stack Trade

    Hi Guys, I attended one of his presentations for a couple of Hrs a while back and I have to say that it did not seem that bad. Everything he explained made sense and the indicators worked OK. Now, I forget what he charges but have seen allot of worse systems than this. By the way, I do not know this guy from Adam just in case you`re wondering. Cheers, emial
  22. Hi Guys, I have the COGs indicator for Metatrader, if that can help please let me know. By the way there is a thread at forexfactory that is dealing with this indicator. Cheers, email http://www.forexfactory.com/showthread.php?t=120034
  23. Hi Tams, I use Sierra and MT4, I have tradestation with owndata but do not know how to use it. Thanks a million
×
×
  • Create New...

Important Information

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