It looks like you're new here. If you want to get involved, click one of these buttons!
quote
$infy = $Kite->quote("'exchange'=>'NSE','tradingsymbol'=>'INFY'");
All API calls are authenticated using access token, you can check out documentation here.
i already got the access token. can you correct the code above (any or both the codes).
NB:
i already got the list of Orders and Positions from the API through another part of my code. This is just FYI.
quote
method to fetch quotes. You can do something like Refer this - https://kite.trade/docs/phpkiteconnect/class-KiteConnect.html#_quoteThanks.
I had a missing argument 2 error. However, your reply pointed me into the right direction. Here is the working code
$infy = $Kite->quote("NSE","INFY");
Thanks once again.