Picture
SIMPLE EA for a simple method needed!! 2 replies
Simple System By T101 - My Thought 18 replies
Continuation of T101 method discussions 24 replies
DislikedOrest/T101,
Thanks a ton for all the work you've done and for sharing it with us!
Orest, your indicators are amazing-especially since implementing the rolling time for each TFI finally switched over to IBFX and since I got all of the indicators and buy/sell scripts moved over, I haven't lost a basket. I'm up about 1300 pips on a mini account this week and I only have about two hours a day to trade.
I'm using Orest 1.14 as the main indicator and BuySellBasket as confirmation. I also loaded ProfitChart a couple of days ago. I've...Ignored
DislikedHi Matt (netwrkgod)!
I found an older mesage of yours that is quite encouraging. I am still working with trials on this system and haven't yet arrived at the best setups for myself. I would really appreciate your posting your screenshots marked with entries, exits AND your entry/exit rules and the average profit in pips per trade that you can safely target.
Thanks a million.Ignored
DislikedI've attached a screenshot of my current setup. I've certainly lost some since then, but almost all of the losses were because I didn't follow the strategy - I followed my emotions instead. I can't really post entries because my screen isn't setup to see those - I'll try to find an old post I made that gave general guidelines as to how I try to trade.
I'm certainly not an expert, but my advice is to trade on a demo account until you are very comfortable with your system - then write it down - even if you think you have it memorized. Then make...Ignored
Dislikednetwrkgod,
Thank you.
If it's a problem marking entries, it would be nice to know the entry rules that you follow currently.
I also await the link to your old post that gave general guidelines as to how you traded then.
thanks again,
cheers.Ignored
DislikedOrest(or anyone who know for sure):
Does the Orest Indicator update in a "continuous loop?" For example, let's use the 1 Hour Indicator. Does this reset once per hour at the beginning of each hour, OR does it continually update (every minute, for example) so that it always maintains a one hour interval?
Hope I explained that well enough. Thanks.
Regards,
CA1962Ignored
Dislikedvery happy you are here Orest. You are one that most contribute with this strategy, i hope you find a way to make consistent pips using it.
but what his questions, if a understood correct, is if looking now for the 1 hour tab (i am writing this 11:50) he is looking to the basket that was openned 10:51, then looking to the 1 hour tab 11:55 he will see the basket openned 10:55
or if he looks to the basket 11:51 he will see a virtual basket oppened 11:00 wich will change 12:00 when he will start to see a new basket wich was oppned 11:00
i believe...Ignored
DislikedHello can somebody direct me to any documantation for the BuySellBasket indicator. ThanksIgnored
// in the top of the code where the properties are extern bool AlertON = false; extern bool EmailON = false; extern int Alert_Time_Frame = 8; // I want to receive alerts when signal // changes at 4h column, see which // time frame is which in // Columns Cutomization property // somewhere below where other variables are declared // we need this one to store previous value of the signal (Long, Short) // to send alert/email only when the signal changes string previous_signal = ""; // now this piece of code in draw_objects function, just below // WindowRedraw(); // We obviousely don't want to send alert/email from lower timeframes - you // would be overloaded by them. So, I'm sending alerts/emails only if signal // on 4h changes. You could adjust that. if (week_back==(Alert_Time_Frame-1) && trend!=previous_signal) { if (AlertON) Alert(trend ," signal has been received!, Time=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime())); if (EmailON) SendMail(trend ," signal has been received!, Time="+TimeToStr(CurTime(),TIME_DATE)+" "+TimeHour(CurTime())+":"+TimeMinute(CurTime())); previous_signal = trend; }
DislikedHi Orest,
Is there anyway you can add email alerts into your indicator?
btw, thanks for all your hard work on this, i think it has helped alot of us with trading this system...Ignored