NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 42
Search: Posts Made By: milkysahai001
Forum: Platforms and Indicators October 13th, 2017, 07:28 AM
Replies: 4
Views: 1,905
Posted By milkysahai001
Alligator, its working. Thanks a lot. :)

Alligator,

its working. Thanks a lot. :)
Forum: Platforms and Indicators October 11th, 2017, 07:14 AM
Replies: 4
Views: 1,905
Posted By milkysahai001
Alligator, thanks a lot for your reply. the...

Alligator,

thanks a lot for your reply. the code is not working though. it is generating only one buy signal instead of three. i will see what can be done now. thanks again. :)
Forum: Platforms and Indicators October 9th, 2017, 03:41 AM
Replies: 4
Views: 1,905
Posted By milkysahai001
Waiting for some bars before entry

I want to create a code for scaling in if the same conditions are met 3 times.

i.e., if there is a buy signal and again BUY signal conditions are met before SELL (LongExit) condition, then the...
Forum: Platforms and Indicators April 4th, 2017, 11:27 PM
Replies: 3
Views: 3,627
Posted By milkysahai001
Sandip1952, Yes I want it. Please share.

Sandip1952,

Yes I want it. Please share.
Forum: Platforms and Indicators April 4th, 2017, 11:25 PM
Replies: 2
Views: 2,807
Posted By milkysahai001
Tomas, I had put 240 minutes in the box...

Tomas,

I had put 240 minutes in the box beside symbol, then it came in the backtester settings itself.

Hope that helps.
Forum: Platforms and Indicators March 29th, 2017, 06:41 AM
Replies: 2
Views: 2,807
Posted By milkysahai001
How to set a custom periodicity in backtester settings in Amibroker 5.7?

I want to backtest a strategy on 4 hour time frame. But in the backtester settings I cannot set the periodicity to 4 hours. Is there any way to do that?

thanks!

Edit:
Problem solved. Not able...
Forum: NinjaTrader March 20th, 2017, 04:11 AM
Replies: 3
Views: 8,248
Posted By milkysahai001
Working with Order flow footprint charts in NT8

https://nexusfi.com/attachment.php?attachmentid=229902
https://nexusfi.com/attachment.php?attachmentid=229903
i am trying to use the NOFT Traders Order flow software in NinjaTrader8, Indian...
Forum: Platforms and Indicators January 25th, 2017, 06:31 AM
Replies: 5
Views: 1,626
Posted By milkysahai001
ignore the earlier one. it should be : ...

ignore the earlier one. it should be :

MA1 = MA(C, 48);
MA2 = MA(C, 18);

Crossing = ValueWhen(Cross(MA2, MA1), Close, 1);
Rising = IIf(ValueWhen(Crossing,Close,1) > Ref(Close, -3), 1, 0);
...
Forum: Platforms and Indicators January 25th, 2017, 05:50 AM
Replies: 5
Views: 1,626
Posted By milkysahai001
as i said, i didn't exactly get what you wanted,...

as i said, i didn't exactly get what you wanted, that's why the error. English is not my first language too. :)

MA1 = MA(C, 48);
MA2 = MA(C, 18);

Crossing = ValueWhen(Cross(MA2, MA1), Close,...
Forum: Platforms and Indicators January 25th, 2017, 02:24 AM
Replies: 5
Views: 1,626
Posted By milkysahai001
your concern is a bit ambiguous. but as far as i...

your concern is a bit ambiguous. but as far as i got it, you can try this:

MA1 = MA(C, 48);
MA2 = MA(C, 18);

Buy = Cross(MA2, MA1) AND Close > Ref(Close, -3);

and please read the amibroker...
Forum: Platforms and Indicators January 25th, 2017, 02:07 AM
Replies: 2
Views: 1,459
Posted By milkysahai001
though it is not clear from your post. i think...

though it is not clear from your post. i think you can try this:

Close > Ref(Close, -1)

this should work.
Forum: Platforms and Indicators January 18th, 2017, 03:09 AM
Replies: 3
Views: 3,627
Posted By milkysahai001
how and when to use Flip function in amibroker.

can the Flip function be used to create an InTrade function which tracks the market position of a strategy. i would like to create Cover = InTrade AND some criteria. i.e. it should first check if...
Forum: Platforms and Indicators January 13th, 2017, 03:54 AM
Replies: 1
Views: 1,980
Posted By milkysahai001
Creating a new function in Amibroker

i need to create a function MarketPosition in Amibroker, just like the one in MultiCharts. description in MultiCharts:
MarketPosition(N) returns whether the strategy is currently flat, short, or...
Forum: Platforms and Indicators January 3rd, 2017, 01:33 AM
Replies: 2
Views: 2,518
Posted By milkysahai001
Help needed in coding afl

below is my simple stochastics strategy.i am using this on symphony presto amifuse trading on this bar close price.
i want the trades to take place on next bar open price. but not able to do so. i...
Forum: Platforms and Indicators December 15th, 2016, 04:54 AM
Replies: 7
Views: 2,635
Posted By milkysahai001
maryfromcolorado, its okay. thanks for your...

maryfromcolorado,

its okay. thanks for your inputs.
Forum: Platforms and Indicators December 12th, 2016, 10:20 PM
Replies: 7
Views: 2,635
Posted By milkysahai001
maryfromcolorado, i had previously tried : ...

maryfromcolorado,

i had previously tried :
Value1 = IIf(IsNull(Ref(HaOpen, -1)), HaClose, Ref(HaOpen, -1));
HaOpen = Value1 + smooth * (HaClose - Value1);

but again the initialization issue....
Forum: Platforms and Indicators December 11th, 2016, 11:01 PM
Replies: 7
Views: 2,635
Posted By milkysahai001
maryfromcolorado, Not working. its asking to...

maryfromcolorado,

Not working. its asking to initialize HaOpen first. :(
Forum: Platforms and Indicators December 7th, 2016, 11:59 PM
Replies: 7
Views: 2,635
Posted By milkysahai001
help needed in coding a variable in afl.

i am trying to code a variable HaOpen (my modified open for Heikin Ashi) which depends on HaClose (modified close).

HaOpen is basically ((HaOpen[previous]) + smooth * ( HaClose –...
Forum: Platforms and Indicators December 7th, 2016, 11:14 PM
Replies: 17
Views: 4,268
Posted By milkysahai001
Thanks Big Mike. :)

Thanks Big Mike. :)
Forum: MultiCharts December 2nd, 2016, 02:54 AM
Replies: 0
Views: 1,111
Posted By milkysahai001
Different signals on same time frame, code on Multicharts and Amibroker.

i am trying to run one strategy with same parameters on amibroker and multicharts. i have formed my own indicators and those are hyper sensitive in amibroker. i.e., i am getting way too many signals...
Forum: Platforms and Indicators December 2nd, 2016, 02:52 AM
Replies: 1
Views: 1,300
Posted By milkysahai001
Different signals on same time frame, code on Amibroker and Multicharts.

i am trying to run one strategy with same parameters on amibroker and multicharts. i have formed my own indicators and those are hyper sensitive in amibroker. i.e., i am getting way too many signals...
Forum: MultiCharts November 28th, 2016, 02:04 AM
Replies: 0
Views: 2,348
Posted By milkysahai001
Function like NZ (TradingView Pine Script) for MultiCharts?

ignore this thread please. I am not able to delete it.!
Forum: Platforms and Indicators November 28th, 2016, 01:28 AM
Replies: 2
Views: 2,379
Posted By milkysahai001
Is there a Function like NZ (TradingView) in AmiBroker AFL?

ignore this thread please. i am not able to delete it!!
Forum: MultiCharts November 25th, 2016, 05:55 AM
Replies: 8
Views: 2,143
Posted By milkysahai001
ABCTG, ...

ABCTG,

https://nexusfi.com/attachment.php?attachmentid=222046
https://nexusfi.com/attachment.php?attachmentid=222047



Please find the attached images. one is the right signals in Amibroker...
Forum: MultiCharts November 25th, 2016, 05:20 AM
Replies: 8
Views: 2,143
Posted By milkysahai001
ABCTG, I have the same confusion about the...

ABCTG,

I have the same confusion about the nth most recent bar. i will dig more. Thanks for your inputs.
Showing results 1 to 25 of 42

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top