Search results

  1. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Thik Nahi Hoga. I changed code for RTD1.60 to take care of that. RTD1.60 tries to open data table from menu. If it doesn't succeed, it opens nest chart and opens data table from chart.
  2. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Are Bhai that is bug in Nest trader.
  3. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Right+Click on any scrip and Refresh Mkt watch
  4. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Guys, no snapshots and one-two liners. How's any help you with that information? Do you expect us to read your mind?
  5. josh1

    Another Bhavcopy Downloader (ABCD)

    Download from BSE is working at my end now. Backup ABCD.r file -- Thereafter Download ABCD.r and curl.exe file from same dropbox link into ABCD folder. Run ABCD and check. Guys, I missed these posts somehow.
  6. josh1

    Learn How To Fish

  7. josh1

    Learn How To Fish

    @Snake.Head MPH green and MPL red. This is 3min tf
  8. josh1

    Learn How To Fish

    Yes.. H means mph and L means mpl. So everything between the two yellow lines is to be ignored. In that case, H1 will be at the highest High. L1 and H2 are incorrect and L2 is correct mpl. Am I right?
  9. josh1

    Learn How To Fish

    Ok... There are some responses. I feel I should get some clarifications. @VIJAY, Please see the below picture and confirm the markings.
  10. josh1

    Learn How To Fish

    Thanks K. Those AFL do not work because they look at finite number of bars in past and future. In our case we look at dynamic number of bars because we ignore inside bars
  11. josh1

    Learn How To Fish

    Here I have developed AFL for Vijay's Pivots. They are being plotted 99% right. However, there are certain lacuna, to do things for which I require help. 1. H and L are some times not the highest or lowest point due to nature of definition of pivots. (If that is alright, we leave them as it is.)...
  12. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Do it again
  13. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Amibroker does not know that it is end time. You will have to do time adjustments in format file. Read Amibroker guide ASCII import part
  14. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Data in Nest table starts at 9:16. Which broker is this? Give snapshot of Nest table.
  15. josh1

    Simple Coding Help - No Promise.

    It works. Change bar period to 1, 3, 5, 15,60, daily. Once chart appears, you can change to which ever period you want.
  16. josh1

    Simple Coding Help - No Promise.

    Reverting the definition of Demand and Supply point seems to solve the issue. DemandPoint = (L < Ref(L, -2)) & L <= Ref(L, -1) & L < Ref(L, 1) & L < Ref(L, 2); //DemandPoint = PL; SupplyPoint = (H > Ref(H, -2) & H >= Ref(H, -1) & H > Ref(H, 1) & H > Ref(H, 2)); //SupplyPoint = PH; It seems I...
  17. josh1

    Simple Coding Help - No Promise.

    _SECTION_BEGIN("TrendLines"); GraphXSpace = Param("GraphXSpace", 10, 0, 100, 1); colorHighliter = IIf(C >= O, ColorRGB(0, 128, 0), ColorRGB(128, 0, 0)); //Price SetBarFillColor(colorHighliter); Plot(C, "Close", IIf(colorHighliter == ColorRGB(128, 0, 128), ColorRGB(255, 0, 255)...
  18. josh1

    Learn How To Fish

    This AFL marks Pivots in Amibroker. It is not 100% accurate but gives lot of assistance. Anybody who can modify it for inside candles is welcome to contribute. /********************************************************************************** **************************Start of Vijay Pivot...
  19. josh1

    Learn How To Fish

    Yes.. However, taking care of this in code is giving me nightmares. See that three inside candles are breaking but there is only one mpl in below case.
  20. josh1

    Simple Coding Help - No Promise.

    Assuming you are talking about NSE equity, go to Amibroker Database settings -- intraday Settings. Set as below Then in Tools -- Preferences -- Intraday set as below Premarket data is not given by NSE except for spot index so it won't be shown unless you are manually feeding it.