answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: When stock index falls a sell index future position will be in a aprofit or loss?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How does one use an index future?

An index future is a "cash-settled futures contract on the value of a particular stock market index". Index futures are used in investments, trading, and hedging.


What is the Program to find the largest element in an array and position occurrence?

#include<stdio.h> #include<conio.h> main() { int a[100]; int n,largest,index,position; printf("enter the number of elements in the array"); scanf("%d",&n); printf("enter %d elements",n); for(index=0;index<n;index++) scanf("%d",&a[index]); largest=a[0]; position=0; for(index=1;index<n;index++) if(a[index]>largest) { largest=a[index]; position=index; } printf("largest element in the array is %d\n",largest); printf("largets element's position in the array is %d\n",position+1); getch(); }


What are some Index Future trading strategies?

Some of Index Future trading strategies are Changing the Beta of a Portfolio, Stock Index Arbitrage, Program Trading,Designated Order Turnaround and Computerised Trading.


What is ghana's position on the corruption index?

69


What is stock and index futures?

Bets on future prices.


What is the purpose of the mutual fund index?

The Mutual Fund Index is designed to track the performance of a bond or stock index to predict the future behavior of said index based on its past performances.


What is the default index of an array's first position in most languages?

0


What fossil used to compare the relative ages of fossils?

An index fossil. An index fossil's age is known, allowing scientists to know the relative age of other fossils based on their position relative to the index fossil. (Ex. If a fossil is deeper in the earth, it is older than the index fossil)


What is the Actim Index in soccer?

It was renamed as the EA Sports Player Performance Index. The EA Index ranks players on a weekly basis, according to their performances on the pitch, both by position and in an overall chart, throughout the season.


What is the position of the thumb to the little finger in the anatomical position?

In the anatomical position of the hand the palm is facing forward. The thumb is placed in contact with the index finger. You can see the picture of the anatomical position. It is better to see than describe the same.


How can you get position of number from given some number by using array in c language?

Traverse the array from index 0 until you find the number. Return the index of that number.


How do you find particular element in array?

by using index position we can find the particular element in array.