- Search Crypto Craft
- 489 Results (53 Threads, 436 Replies)
-
ionone replied Jan 22, 2022try this sir (not tested)
I will code your EAs and Indicators for no charge
-
ionone replied Jan 20, 2022it repaints it retrieves real time fractal, that's not causally possible
Indicator for MT4 converting to MT5?
-
ionone replied Jan 16, 2022you have variables with the same name, now that you removed bad symbols. rather replace symbols by a different letter
I will code your EAs and Indicators for no charge
-
ionone replied Jan 9, 2022repainting is only useful when you need it to be repainting, like zig zag to detemine SR in the past, where timing is not an issue or using centered MAs to determine past trend but ultimately the final indicator should not be repainting, otherwise ...
Indicator Bank
-
ionone replied Jan 9, 2022please show us the signal with 100% HR, i'd be curious to see that
Giving Back! My Best Expert Advisor EA Free for Everyone
-
ionone replied Jan 7, 2022finally some MTF without repainting good job!
Experiments - while waiting for an order to get closed
-
ionone replied Jan 2, 2022yes, any smoothing algorithm can be made "centered", thus repainting. thank you for this clarification.
I will code your EAs and Indicators for no charge
-
ionone replied Jan 2, 2022this is a good indicator. 18 pairs profitables over 22 tested (with spread) MT4 : url MT5 : url Jeff
Any non-repaint indicators that work well trading forex
-
ionone replied Dec 19, 2021[quote=aalaarajy;13830432] try this
Help adding a take profit function to this EA
-
ionone replied Dec 19, 2021extern int TP = 500; extern int Magic = 123; void VirtualTP() { for (int i=0; i<OrdersTotal(); i++) { if (OrderSelect(i, SELECT_BY_POS)==true) { if (OrderSymbol()==Symbol() && OrderMagicNumber()==Magic) { int type = OrderType(); double c0 = ...
Help adding a take profit function to this EA
-
ionone replied Dec 19, 2021do you want a hard TP or a virtual one ?
Help adding a take profit function to this EA
-
ionone replied Dec 9, 2021it would be like saying "i'm a truck driver and I enjoy driving so much". It means you take unecessary risks and drive recklessly for the thrill. If you drive carefully, it WILL be boring, doesn't matter how much money you make driving
After consistently profitable, will you become boring?
-
ionone replied Dec 9, 2021that's what Karen Foo says : trading must be boring, otherwise you're doing something wrong
After consistently profitable, will you become boring?
-
ionone replied Dec 7, 2021yeah I know what I mean is that my zig zag is not a classic zig zag where the latest arm is removed it's a real time non repaint zig zag (it's not as accurate as the repainting zig zag, but whatever)
Experiments - while waiting for an order to get closed
-
ionone replied Dec 7, 2021no I coded a NRP zig zag, not a "non repainting" zig zag
Experiments - while waiting for an order to get closed
-
ionone replied Dec 7, 2021it's not causally possible to pinpoint reversals in a zig zag better than that
Experiments - while waiting for an order to get closed
-
ionone replied Nov 25, 2021for(int i=1; i<=100; i++) { double MA0=iMA(NULL,1,5,0,3,0,i+3); double MA1=iMA(NULL,1,5,0,3,0,i+4); double MA2=iMA(NULL,1,5,0,3,0,i+5); double MA3=iMA(NULL,1,5,0,3,0,i+6); double Op0=iOpen(NULL,1,i+3); double Hi0=iHigh(NULL,1,i+3); double ...
Need Help : Merge 2 Loops into 1 Loop